:root {
  --main: #f472b6;
  --accent: #fbbf24;
  --bg: #fff5f7;
  --text: #4a2530;
  --text-light: #8a5a6a;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(244, 114, 182, 0.15);
  --shadow-hover: 0 16px 48px rgba(244, 114, 182, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: 800; }
a { text-decoration: none; color: inherit; }

/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main), var(--accent));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease-out;
  border-radius: 0 4px 4px 0;
}

/* 导航栏 */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.1);
  padding: 12px 0;
  z-index: 1000;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--main) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i { color: var(--accent); }
.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--main);
  background: rgba(244, 114, 182, 0.08);
}
.navbar-toggler { border: none; color: var(--text); font-size: 1.4rem; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero 区域 */
.hero-section {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 80% 0%, rgba(244, 114, 182, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 20% 100%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--main), var(--accent));
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title span { color: var(--main); }
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}
.btn-hero-primary {
  background: var(--main);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.4);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(244, 114, 182, 0.5); color: var(--white); }
.btn-hero-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid rgba(244, 114, 182, 0.2);
}
.btn-hero-secondary:hover { border-color: var(--main); color: var(--main); transform: translateY(-2px); }

/* 通用区块 */
.section-block { padding: 80px 0; }
.section-header { margin-bottom: 48px; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--main);
  background: rgba(244, 114, 182, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; font-weight: 300; }

/* 影片卡片 */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; }
@media (min-width: 992px) {
  .movie-grid { grid-template-columns: repeat(6, 1fr); }
}
.movie-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}
.movie-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: var(--main);
}
.movie-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.movie-info { padding: 14px 12px 16px; }
.movie-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.movie-rating {
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
  font-family: 'SF Mono', 'Courier New', monospace;
}
.movie-year { font-family: 'SF Mono', 'Courier New', monospace; }

/* 榜单 */
.rank-list { list-style: none; padding: 0; margin: 0; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(244, 114, 182, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.rank-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: #f1f3f5;
  color: var(--text-light);
}
.rank-badge.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: var(--white); box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4); }
.rank-badge.silver { background: linear-gradient(135deg, #c0c4cc, #a0a4ae); color: var(--white); box-shadow: 0 4px 12px rgba(160, 164, 174, 0.4); }
.rank-badge.bronze { background: linear-gradient(135deg, #d97706, #b45309); color: var(--white); box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4); }
.rank-info { flex: 1; }
.rank-title { font-weight: 700; font-size: 0.95rem; }
.rank-meta { font-size: 0.75rem; color: var(--text-light); }
.rank-score { font-weight: 800; color: var(--accent); font-family: 'SF Mono', 'Courier New', monospace; font-size: 1rem; }

/* 分类标签 */
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.category-pill {
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(244, 114, 182, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.category-pill:hover, .category-pill.active {
  background: var(--main);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(244, 114, 182, 0.3);
}

/* 时间线 */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--main), var(--accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(244, 114, 182, 0.06);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--main);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--main);
}
.timeline-time { font-size: 0.8rem; color: var(--main); font-weight: 700; font-family: 'SF Mono', 'Courier New', monospace; }
.timeline-title { font-weight: 800; font-size: 1.05rem; margin: 4px 0; }
.timeline-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* 标签页切换 */
.tab-content-block { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.nav-tabs .nav-link {
  color: var(--text);
  font-weight: 600;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  margin-right: 8px;
}
.nav-tabs .nav-link.active {
  background: var(--main);
  color: var(--white);
}

/* 即将上线 */
.upcoming-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
.upcoming-card:hover { transform: translateY(-6px); }
.upcoming-date {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.upcoming-title { font-weight: 800; font-size: 1.1rem; }
.upcoming-desc { color: var(--text-light); font-size: 0.85rem; margin-top: 8px; }

/* 友情链接 */
.friend-links {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.friend-links h3 { font-weight: 800; margin-bottom: 16px; }
.friend-links a {
  color: var(--text-light);
  margin: 0 12px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.friend-links a:hover { color: var(--main); }

/* 页脚 */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-brand { font-size: 1.6rem; font-weight: 900; color: var(--main); margin-bottom: 16px; }
.footer a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease; }
.footer a:hover { color: var(--main); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; margin-top: 40px; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* 弹窗 */
.movie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.movie-modal.show { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
}
.modal-close:hover { background: var(--main); color: var(--white); transform: rotate(90deg); }
.modal-poster {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.modal-title { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.modal-rating {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 800;
  font-family: 'SF Mono', 'Courier New', monospace;
}
.modal-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.modal-plot { color: var(--text); line-height: 1.7; font-size: 0.95rem; }
.modal-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.modal-tag {
  background: rgba(244, 114, 182, 0.1);
  color: var(--main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* 淡入上移动效 */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 额外板块 */
.content-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.content-section h3 { font-weight: 900; margin-bottom: 20px; font-size: 1.5rem; }
.content-section p { line-height: 1.8; color: var(--text-light); }
.content-section ul { padding-left: 20px; color: var(--text-light); line-height: 1.8; }

/* 响应式 */
@media (max-width: 768px) {
  .hero-section { padding: 100px 0 60px; }
  .section-block { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .movie-grid { gap: 16px; }
  .modal-content { padding: 24px; }
  .footer { padding: 40px 0 20px; }
}

/* 等宽字体用于数据 */
.mono { font-family: 'SF Mono', 'Courier New', monospace; }

/* --- 子页面追加 --- */
/* 关于页专属样式 */
        .about-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--bg) 0%, rgba(244, 114, 182, 0.08) 100%);
            position: relative;
            overflow: hidden;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
.about-hero-content {
            position: relative;
            z-index: 1;
        }
.about-section {
            padding: 70px 0;
        }
.about-section:nth-child(even) {
            background: rgba(244, 114, 182, 0.04);
        }
.about-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.about-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--main), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--white);
            margin-bottom: 18px;
        }
.about-timeline {
            position: relative;
            padding-left: 32px;
        }
.about-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--main), var(--accent));
            opacity: 0.4;
        }
.about-timeline-item {
            position: relative;
            margin-bottom: 28px;
        }
.about-timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--main);
            border: 3px solid var(--white);
            box-shadow: 0 0 0 2px var(--main);
        }
.about-stats {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.95), rgba(251, 191, 36, 0.9));
            border-radius: var(--radius-lg);
            padding: 48px 32px;
            color: var(--white);
            text-align: center;
        }
.about-stat-item {
            padding: 16px;
        }
.about-stat-number {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 4px;
        }
.about-stat-label {
            font-size: 14px;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }
.about-note {
            background: rgba(244, 114, 182, 0.06);
            border-left: 4px solid var(--main);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 20px 24px;
            margin: 24px 0;
        }
.about-hero {
                padding: 80px 0 40px;
            }
.about-stat-number {
                font-size: 32px;
            }
.about-section {
                padding: 50px 0;
            }

/* --- 子页面追加 --- */
/* 覆盖Bootstrap可能引入的白底,确保视觉统一 */
        .card, .card-body, .card-header, .card-footer,
        .list-group-item, .accordion-item, .accordion-button,
        .form-control, .form-select {
            background: var(--white);
            color: var(--text);
            border-color: rgba(244, 114, 182, 0.2);
        }
.accordion-button:not(.collapsed) {
            background: rgba(244, 114, 182, 0.08);
            color: var(--text);
        }
/* 针对本页小卡片微调 */
        .disclaimer-card {
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            padding: 1.8rem 1.5rem;
            height: 100%;
            transition: transform .25s ease, box-shadow .25s ease;
            border: 1px solid rgba(244, 114, 182, 0.12);
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card i {
            color: var(--main);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
.disclaimer-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
.disclaimer-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.text-muted-soft {
            color: var(--text-light);
        }
/* 高亮导航当前页 */
        .navbar .nav-link.active {
            color: var(--main) !important;
            font-weight: 600;
        }
/* 链接色彩 */
        .prose a {
            color: var(--main);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(244,114,182,.4);
        }
.prose a:hover {
            color: var(--accent);
        }
hr {
            border-color: rgba(244, 114, 182, 0.2);
        }

/* --- 子页面追加 --- */
.privacy-section { background: var(--white); border-radius: var(--radius-lg); padding: 3rem 2.5rem; box-shadow: var(--shadow); margin-bottom: 2rem; }
.privacy-section h2 { color: var(--main); font-weight: 700; margin-bottom: 1.5rem; font-size: 1.75rem; display: flex; align-items: center; gap: 0.75rem; }
.privacy-section h2 i { color: var(--accent); }
.privacy-section h3 { color: var(--text); font-weight: 600; margin-top: 1.75rem; margin-bottom: 1rem; font-size: 1.25rem; }
.privacy-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.privacy-section ul { color: var(--text-light); line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-section ul li { margin-bottom: 0.5rem; }
.privacy-section .highlight-box { background: var(--bg); border-left: 4px solid var(--main); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }
.privacy-section .highlight-box p { margin-bottom: 0; }
.privacy-updated { display: inline-block; background: var(--accent); color: var(--text); padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; margin-bottom: 2rem; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
    .contact-hero {
      background: linear-gradient(135deg, var(--bg) 0%, #ffe8f1 100%);
      padding: 80px 0 60px;
    }
.contact-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow);
      transition: transform .3s ease, box-shadow .3s ease;
      height: 100%;
      border: 1px solid rgba(244,114,182,.1);
    }
.contact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
.contact-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--main) 0%, #f472b6 100%);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      margin-bottom: 20px;
    }
.contact-card h3 {
      color: var(--text);
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 12px;
    }
.contact-card p {
      color: var(--text-light);
      margin-bottom: 8px;
      font-size: .95rem;
    }
.contact-card a {
      color: var(--main);
      text-decoration: none;
      font-weight: 600;
      word-break: break-all;
    }
.contact-card a:hover {
      text-decoration: underline;
    }
.form-section {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow);
    }
.form-label {
      color: var(--text);
      font-weight: 600;
      font-size: .95rem;
      margin-bottom: 8px;
    }
.form-control {
      background: #fff5f7;
      border: 1.5px solid rgba(244,114,182,.2);
      border-radius: var(--radius-sm);
      color: var(--text);
      padding: 12px 16px;
      transition: border-color .3s ease, box-shadow .3s ease;
    }
.form-control:focus {
      background: #fff;
      border-color: var(--main);
      box-shadow: 0 0 0 4px rgba(244,114,182,.15);
      color: var(--text);
    }
.form-control::placeholder {
      color: var(--text-light);
      opacity: .6;
    }
.btn-submit {
      background: linear-gradient(135deg, var(--main) 0%, #ec4899 100%);
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      padding: 14px 36px;
      font-weight: 600;
      font-size: 1rem;
      transition: transform .3s ease, box-shadow .3s ease;
      box-shadow: 0 4px 16px rgba(244,114,182,.3);
    }
.btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(244,114,182,.4);
      color: #fff;
    }
.faq-item {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-bottom: 16px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--main);
    }
.faq-item h4 {
      color: var(--text);
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }
.faq-item p {
      color: var(--text-light);
      font-size: .95rem;
      line-height: 1.6;
    }
.response-time {
      background: linear-gradient(135deg, var(--main) 0%, #fbbf24 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: #fff;
      text-align: center;
      margin-top: 48px;
    }
.response-time h3 {
      font-weight: 800;
      font-size: 1.8rem;
      margin-bottom: 12px;
    }
.response-time p {
      opacity: .95;
      font-size: 1rem;
    }
.contact-hero { padding: 48px 0 32px; }
.contact-card { padding: 24px; }
.form-section { padding: 24px; }