:root {
  --primary: #9a6b4f;
  --primary-dark: #6f4833;
  --primary-light: #b98d6f;
  --accent: #c8a96a;
  --accent-dark: #a9884b;
  --bg: #faf7f2;
  --bg-alt: #f0e9e0;
  --dark: #23150d;
  --dark-soft: #3b2a1e;
  --text: #2d2a26;
  --text-light: #6f6559;
  --border: #e4d9cc;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(44, 24, 16, 0.08);
  --shadow-hover: 0 12px 36px rgba(44, 24, 16, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(154, 107, 79, 0.12);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 32px;
  line-height: 1.35;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 107, 79, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #2b1a0e;
  border-color: var(--accent);
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 107, 79, 0.25);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #fff;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Header 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 12, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease;
}

.site-header.scrolled {
  background: rgba(20, 12, 6, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(200, 169, 106, 0.35);
}

.logo-text {
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
  color: #fff;
  background: rgba(154, 107, 79, 0.55);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, rgba(22, 13, 6, 0.88) 0%, rgba(36, 20, 12, 0.78) 45%, rgba(72, 44, 26, 0.55) 100%);
  z-index: -1;
}

.hero-countdown-wrap {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 5;
}

.hero-countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(20, 12, 6, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 60px;
  padding: 12px 16px 12px 26px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cd-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cd-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.cd-label i {
  margin-right: 4px;
}

.cd-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.cd-num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-content {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}

.hero-main {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(200, 169, 106, 0.18);
  border: 1px solid rgba(200, 169, 106, 0.35);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 660px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-data {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.hero-data strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-right: 2px;
}

.hero-data .sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  animation: bounce 2s infinite;
  z-index: 4;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* 功能亮点 */
.features-grid .feature-card {
  margin-bottom: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: var(--transition);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(154, 107, 79, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(154, 107, 79, 0.3);
}

.feature-card h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

/* 服务范围 */
.coverage {
  background: var(--bg-alt);
}

.coverage-img {
  position: relative;
}

.coverage-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.coverage-img::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(200, 169, 106, 0.3);
  z-index: -1;
}

.coverage-content .section-tag {
  margin-bottom: 12px;
}

.coverage-content h2 {
  font-size: 30px;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 14px;
  font-weight: 700;
}

.coverage-content > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.coverage-list li:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateX(3px);
}

.coverage-list i {
  color: var(--primary);
  font-size: 16px;
}

/* 爆款清单 */
.project-list {
  max-width: 900px;
  margin: 0 auto;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
  flex-wrap: wrap;
}

.project-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(154, 107, 79, 0.25);
  transform: translateY(-3px);
}

.project-num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(154, 107, 79, 0.35);
  min-width: 54px;
  font-variant-numeric: tabular-nums;
}

.project-info {
  flex: 1;
  min-width: 240px;
}

.project-info h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.project-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.project-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.project-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.project-item .btn {
  flex-shrink: 0;
}

/* 茶艺师 */
.masters {
  background: var(--bg-alt);
}

.masters-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.masters-scroll::-webkit-scrollbar {
  height: 6px;
}

.masters-scroll::-webkit-scrollbar-thumb {
  background: rgba(154, 107, 79, 0.4);
  border-radius: 20px;
}

.master-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  scroll-snap-align: start;
  transition: var(--transition);
}

.master-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.master-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid rgba(154, 107, 79, 0.15);
}

.master-card h3 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
}

.master-title {
  display: inline-block;
  margin: 6px 0 12px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  background: rgba(154, 107, 79, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.master-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 体验流程 */
.steps-grid .step-item {
  text-align: center;
  padding: 40px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}

.steps-grid .step-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(154, 107, 79, 0.12);
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* 数据指标 */
.stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
  padding: 70px 0;
}

.stats-grid .stat-item {
  text-align: center;
  padding: 24px 12px;
  margin-bottom: 20px;
}

.stat-num {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
}

/* 资讯区 */
.news-list .news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.news-list .news-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.news-text h3 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.5;
}

.news-text h3:hover {
  color: var(--primary);
}

.news-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  font-size: 14px;
  color: var(--text-light);
  white-space: nowrap;
  padding-top: 4px;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.side-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: 30px;
  font-size: 13px;
  color: var(--text);
  transition: var(--transition);
}

.tag-list a:hover {
  background: var(--primary);
  color: #fff;
}

.recommend-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.recommend-card p {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.recommend-card .btn {
  width: 100%;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(154, 107, 79, 0.35);
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq-q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-q::after {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
}

.faq-item.active .faq-a {
  display: block;
}

/* CTA */
.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  text-align: center;
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(35, 21, 13, 0.9), rgba(70, 40, 22, 0.72));
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.35;
}

.cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 0;
}

.footer-grid > .cell {
  margin-bottom: 36px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 10px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* 响应式 */
@media (max-width: 1024px) {
  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .coverage-content h2 {
    font-size: 26px;
  }

  .coverage-img img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .logo-text span {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(20, 12, 6, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 70px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-countdown-wrap {
    position: relative;
    top: 0;
    padding-top: 80px;
  }

  .hero-countdown-bar {
    border-radius: 20px;
    padding: 16px 18px;
    justify-content: center;
    text-align: center;
  }

  .cd-left {
    justify-content: center;
    gap: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-img img {
    height: 260px;
  }

  .project-item {
    padding: 20px;
    gap: 14px;
  }

  .project-num {
    min-width: 40px;
    font-size: 22px;
  }

  .project-price {
    font-size: 18px;
  }

  .project-item .btn {
    width: 100%;
  }

  .cta h2 {
    font-size: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-data {
    gap: 12px;
  }

  .hero-data .sep {
    display: none;
  }

  .hero-data strong {
    font-size: 18px;
  }

  .cd-timer {
    gap: 4px;
  }

  .cd-item {
    padding: 4px 8px;
    font-size: 12px;
  }

  .cd-num {
    font-size: 18px;
  }

  .cd-label {
    font-size: 13px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .coverage-content h2 {
    font-size: 23px;
  }

  .stat-num {
    font-size: 36px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-date {
    font-size: 12px;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-a {
    padding: 0 18px 18px;
  }

  .cta {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========== 设计变量 ========== */
:root {
  --primary: #4a7c3f;
  --primary-dark: #35612d;
  --primary-light: #e8f0e4;
  --accent: #c8a064;
  --accent-light: #f4ead9;
  --accent-dark: #a9834a;
  --bg: #faf7f2;
  --bg-alt: #f1ece4;
  --bg-dark: #2d3a2a;
  --text: #2b2b2b;
  --text-light: #6c6c6c;
  --text-lighter: #9b9b9b;
  --border: #e5ddd2;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-primary: 0 6px 20px rgba(74,124,63,0.25);
  --transition: all .3s ease;
  --container-w: 1200px;
  --header-h: 76px;
}

/* ========== 基础 Reset ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-w);
  padding: 0 24px;
  margin: 0 auto;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn i {
  font-size: 14px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(74,124,63,0.3);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(74,124,63,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.btn-light:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 22px;
  font-size: 14px;
}

/* ========== 徽章 / 标签 ========== */
.badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.badge-accent {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* ========== Header / 导航 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  min-height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(74,124,63,0.3);
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}

.logo-text:hover {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-link.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(74,124,63,0.2);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 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 ========== */
.page-hero {
  position: relative;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43,53,38,0.88) 0%, rgba(43,53,38,0.72) 50%, rgba(43,53,38,0.45) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200,160,100,0.2);
  border: 1px solid rgba(200,160,100,0.4);
  color: #e8c897;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 42px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.page-hero .hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  display: block;
}

/* ========== 板块标题 ========== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 48px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .badge {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 32px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== 服务内容卡片 ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========== 流程 ========== */
.process-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(200,160,100,0.08);
  border-radius: 50%;
}

.process-section .section-header h2 {
  color: #fff;
}

.process-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(200,160,100,0.6);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  font-family: "Georgia", serif;
}

.process-step h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ========== 适用场景 ========== */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scenario-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.scenario-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.scenario-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.scenario-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.scenario-card:hover .scenario-img img {
  transform: scale(1.05);
}

.scenario-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, transparent 50%);
}

.scenario-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.scenario-body {
  padding: 24px 26px 28px;
  flex: 1;
}

.scenario-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.scenario-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
}

/* ========== 区域 ========== */
.regions-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.regions-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.regions-intro h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
}

.regions-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.region-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.region-item i {
  color: var(--primary);
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.region-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.regions-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.regions-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.regions-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,58,42,0.35) 0%, transparent 60%);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item[open] summary {
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-item[open] summary::before {
  content: "\f06a";
}

.faq-answer {
  padding: 16px 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--bg);
}

/* ========== CTA ========== */
.cta-section {
  padding: 90px 0;
  background-image: url('/assets/images/backpic/back-2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(45,58,42,0.92) 0%, rgba(74,124,63,0.78) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ========== 页脚 ========== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand .logo-mark {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 12px rgba(200,160,100,0.3);
}

.footer-brand .footer-logo span:last-child {
  font-size: 18px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* ========== 响应式断点 ========== */
@media screen and (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    max-width: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .page-hero {
    padding: 80px 0 60px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .3s ease;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 13px 16px;
    border-radius: 8px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .cta-inner h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 15px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 18px 12px;
  }

  .stat-num {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .scenario-img {
    height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
