```css
/* ============================================================
   电影天堂网 · 落日影院设计系统
   Cinematic Warm Cream + Coral + Gold
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #FAF3E8;
  color: #3D2C2E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #D4514C;
  color: #FFF8F0;
}

/* ============ 核心布局 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FEF9F0;
}

/* ============ 导航 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 243, 232, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid #E9C46A;
  box-shadow: 0 4px 24px rgba(212, 81, 76, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.22rem;
  text-decoration: none;
  color: #3D2C2E;
  letter-spacing: 1px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4514C, #E9C46A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFF8F0;
  box-shadow: 0 4px 14px rgba(212, 81, 76, 0.35);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D2C2E;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 2px;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4514C, #E9C46A);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.main-nav a:not(.nav-cta):hover {
  color: #D4514C;
}

.nav-cta {
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4514C, #E76F51);
  color: #FFF8F0 !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 81, 76, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 81, 76, 0.45);
  color: #FFF8F0 !important;
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:hover { background: rgba(212, 81, 76, 0.08); }

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #3D2C2E;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* ============ Hero ============ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #FAF3E8;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* 胶片转轮装饰 */
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 3px dashed rgba(233, 196, 106, 0.5);
  border-radius: 50%;
  animation: spin 40s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 81, 76, 0.12), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* 胶片孔洞装饰带 */
.hero .hero-content::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 20%;
  width: 180px;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    #E9C46A 0px,
    #E9C46A 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.3;
  border-radius: 3px;
  z-index: -1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
  background: rgba(250, 243, 232, 0.85);
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid rgba(233, 196, 106, 0.35);
  box-shadow: 0 8px 40px rgba(61, 44, 46, 0.06);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px 6px 14px;
  border-radius: 999px;
  background: #FFF8F0;
  border: 1.5px solid #E9C46A;
  color: #D4514C;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(233, 196, 106, 0.2);
}

.hero-eyebrow::before {
  content: '★';
  font-size: 0.8rem;
  color: #E9C46A;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #3D2C2E;
}

.hero h1 .text-accent {
  color: #D4514C;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(233, 196, 106, 0.45);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.08rem;
  color: #6B5D5E;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero 图片 */
.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(61, 44, 46, 0.15);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
  border: 3px solid #FFF8F0;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.4px;
}

.btn-primary {
  background: linear-gradient(135deg, #D4514C, #E76F51);
  color: #FFF8F0;
  box-shadow: 0 4px 18px rgba(212, 81, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 81, 76, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid #3D2C2E;
  color: #3D2C2E;
}

.btn-outline:hover {
  background: #3D2C2E;
  color: #FFF8F0;
  transform: translateY(-2px);
}

/* ============ 标签 / 标题 ============ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4514C;
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
  line-height: 1;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #D4514C, #E9C46A);
  border-radius: 2px;
  transform: translateY(-50%);
}

.section-label::after {
  content: '◇';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.55rem;
  color: #FFF8F0;
  line-height: 1;
  z-index: 1;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #3D2C2E;
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  color: #6B5D5E;
  margin-bottom: 44px;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ============ 电影票卡片 ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 14px;
  padding: 30px 30px 26px;
  background: #FFF8F0;
  border: 1.5px solid #EFE4D4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* 电影票打孔效果 */
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #FAF3E8 0px,
    #FAF3E8 8px,
    #EFE4D4 8px,
    #EFE4D4 10px
  );
  opacity: 0.6;
  border-radius: 14px 14px 0 0;
}

.category-card::after {
  content: '🎬';
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 1.6rem;
  opacity: 0.12;
  transform: rotate(-12deg);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 14px 36px rgba(61, 44, 46, 0.1);
  border-color: #E9C46A;
}

.category-card:hover::after {
  opacity: 0.25;
  transform: rotate(-6deg) scale(1.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FAF3E8, #F5E6D0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  border: 1.5px solid #EFE4D4;
  color: #D4514C;
  box-shadow: 0 2px 8px rgba(233, 196, 106, 0.15);
  transition: transform 0.3s;
}

.category-card:hover .card-icon {
  transform: scale(1.06) rotate(3deg);
}

.category-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #3D2C2E;
  letter-spacing: -0.2px;
}

.category-card p {
  color: #6B5D5E;
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #D4514C;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease, color 0.25s;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s;
}

.card-link:hover {
  gap: 8px;
  color: #E76F51;
}

/* ============ 特性块 ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(61, 44, 46, 0.12);
  border: 3px solid #FFF8F0;
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}

.feature-image:hover {
  transform: rotate(0deg);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(212, 81, 76, 0.08), transparent 55%);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #3D2C2E;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.feature-text p {
  color: #6B5D5E;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #3D2C2E;
  border-bottom: 1px dashed #EFE4D4;
  font-size: 0.98rem;
  transition: padding-left 0.3s;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  padding-left: 6px;
}

.feature-list li::before {
  content: '✦';
  color: #D4514C;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ 数据条 ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 24px 28px;
  border-radius: 16px;
  background: #FFF8F0;
  border: 1.5px solid #EFE4D4;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4514C, #E9C46A);
  border-radius: 3px 3px 0 0;
  transition: width 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(233, 196, 106, 0.22);
  border-color: #E9C46A;
}

.stat-item:hover::after {
  width: 70%;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: #D4514C;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.86rem;
  color: #6B5D5E;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============ 内容墙 ============ */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: #FFF8F0;
  border: 1.5px solid #EFE4D4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.content-wall-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212, 81, 76, 0.06), transparent 30%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
  pointer-events: none;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(61, 44, 46, 0.12);
  border-color: #E9C46A;
}

.content-wall-item:hover::before {
  opacity: 1;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E9C46A;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px 22px 20px;
  position: relative;
  z-index: 2;
}

.content-wall-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #3D2C2E;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.content-wall-body p {
  color: #6B5D5E;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid #EFE4D4;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #FFF8F0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #E9C46A;
  box-shadow: 0 6px 20px rgba(233, 196, 106, 0.18);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3D2C2E;
  font-size: 1rem;
  transition: color 0.3s;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #D4514C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question {
  color: #D4514C;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  display: none;
  color: #6B5D5E;
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqFade 0.35s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA ============ */
.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #D4514C, #E76F51 55%, #E9C46A);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(212, 81, 76, 0.28);
}

/* 记忆碎片星星装饰 */
.cta-banner::before {
  content: '✦';
  position: absolute;
  font-size: 180px;
  right: -30px;
  bottom: -50px;
  color: rgba(255, 248, 240, 0.12);
  line-height: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 15%;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(255, 248, 240, 0.2);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.cta-banner h2 {
  color: #FFF8F0;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255, 248, 240, 0.92);
  margin-bottom: 30px;
  font-size: 1.02rem;
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: #FFF8F0;
  color: #D4514C;
  box-shadow: 0 4px 18px rgba(61, 44, 46, 0.15);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(61, 44, 46, 0.2);
}

/* ============ 页脚 ============ */
.site-footer {
  padding: 64px 0 28px;
  background: #F0E4D4;
  color: #3D2C2E;
  margin-top: 40px;
  border-top: 2px solid rgba(233, 196, 106, 0.4);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #D4514C 0px,
    #D4514C 20px,
    #E9C46A 20px,
    #E9C46A 40px
  );
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #3D2C2E;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand h3 .logo-icon {
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
}

.footer-brand p {
  color: #8B7D73;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  color: #3D2C2E;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #D4514C, #E9C46A);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 5px 0;
}

.footer-col ul a {
  color: #8B7D73;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul a:hover {
  color: #D4514C;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(61, 44, 46, 0.12);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: #8B7D73;
}

/* ============ 工具类 ============ */
.text-accent {
  color: #D4514C;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: #6B5D5E;
  line-height: 1.8;
  font-size: 0.98rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============ 响应式 ============ */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 50px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: -1px;
  }

  .hero-content {
    padding: 30px 24px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #FAF3E8;
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 12px 28px rgba(61, 44, 46, 0.1);
    border-bottom: 2px solid #E9C46A;
  }

  .main-nav.open {
    display: flex;
    animation: menuSlide 0.3s ease;
  }

  .menu-toggle {
    display: flex;
  }

  /* 汉堡按钮变 X */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .header-inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .feature-text h3 {
    font-size: 1.45rem;
  }

  .cta-banner {
    padding: 40px 24px;
    border-radius: 16px;
  }
}