/* ============================================
   蜜桃视频 · 甜蜜蜜桃视觉系统
   设计概念：蜜桃气泡 / 奶油甜蜜 / 柔和梦幻
   ============================================ */

/* 基础重置 */
*, *::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: #FFF4EC;
  color: #3D2C29;
  line-height: 1.6;
}

::selection {
  background: #FF8A7A;
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #FFF4EC;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF8A7A, #FF6B5E);
  border-radius: 20px;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  background: #FFF4EC;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #FFEADF 0%, #FFF4EC 100%);
}

/* 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 244, 236, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 138, 122, 0.18);
  box-shadow: 0 4px 30px rgba(61, 44, 41, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: #3D2C29;
  letter-spacing: -0.03em;
  transition: transform 0.25s;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FF8A7A, #FF6B5E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 107, 94, 0.35);
}

.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: #5A4A46;
  transition: 0.25s;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #FF8A7A, #FFB8A8);
  border-radius: 4px;
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.main-nav a:hover {
  color: #FF6B5E;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF8A7A, #FF6B5E);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 107, 94, 0.3);
  transition: 0.3s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 94, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 72px;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(255, 184, 168, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(168, 224, 207, 0.18) 0%, transparent 45%),
    linear-gradient(160deg, #FFF4EC 0%, #FFEADF 60%, #FFF4EC 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 8%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 122, 0.25), transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 4%;
  width: 90px;
  height: 110px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, rgba(255, 184, 168, 0.4), rgba(255, 138, 122, 0.2));
  filter: blur(20px);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 138, 122, 0.15), rgba(255, 184, 168, 0.2));
  color: #FF6B5E;
  border: 1px solid rgba(255, 138, 122, 0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, #3D2C29 30%, #FF6B5E 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1::after {
  content: '';
  display: block;
  width: 90px;
  height: 6px;
  margin-top: 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, #FF6B5E, #FFB8A8, #A8E0CF);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.75;
  color: #5A4A46;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  flex: 0.8;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD8CC, #FFB8A8);
  border: 8px solid #fff;
  box-shadow:
    0 0 0 3px rgba(255, 138, 122, 0.25),
    0 30px 70px rgba(255, 138, 122, 0.2);
  transform: rotate(2deg);
  min-height: 360px;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 138, 122, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8A7A, #FF6B5E);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 94, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 107, 94, 0.42);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF8A7A;
  color: #FF6B5E;
}

.btn-outline:hover {
  background: rgba(255, 138, 122, 0.08);
  border-color: #FF6B5E;
  transform: translateY(-2px);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #FF6B5E;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B5E, transparent);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 4px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #3D2C29;
  line-height: 1.2;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 20px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, #FF8A7A, #FF6B5E);
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 4px 12px rgba(255, 107, 94, 0.3);
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  color: #5A4A46;
  font-size: 1rem;
  line-height: 1.7;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  perspective: 800px;
}

.category-card {
  border-radius: 24px;
  padding: 30px 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 138, 122, 0.1), transparent 40%),
    linear-gradient(145deg, #FFFFFF, #FFF8F2);
  border: 1px solid rgba(255, 138, 122, 0.12);
  box-shadow: 0 4px 24px rgba(61, 44, 41, 0.04);
  transition: 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF8A7A, #FFB8A8, #A8E0CF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 0 0 4px 4px;
}

.category-card:hover {
  transform: translateY(-8px) rotate(0.3deg) scale(1.01);
  box-shadow: 0 16px 40px rgba(255, 138, 122, 0.15);
  border-color: rgba(255, 138, 122, 0.25);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 138, 122, 0.18), rgba(255, 184, 168, 0.18));
  box-shadow: 0 4px 14px rgba(255, 138, 122, 0.1);
  transition: transform 0.3s;
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #FF6B5E;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s;
}

.card-link:hover {
  color: #FF8A7A;
  gap: 8px;
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 2px rgba(255, 138, 122, 0.2),
    0 24px 60px rgba(255, 138, 122, 0.15);
  background: linear-gradient(135deg, #E8F8F0, #A8E0CF);
  min-height: 320px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-title {
  margin-bottom: 16px;
}

.feature-text p {
  color: #5A4A46;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.8;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3D2C29;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: #FF6B5E;
  background: linear-gradient(135deg, rgba(255, 138, 122, 0.15), rgba(255, 107, 94, 0.1));
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(255, 138, 122, 0.12);
  box-shadow: 0 4px 24px rgba(61, 44, 41, 0.04);
  transition: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF8A7A, #FF6B5E);
  opacity: 0;
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255, 138, 122, 0.15);
}

.stat-item:hover::after {
  opacity: 1;
  width: 60px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FF6B5E, #FF8A7A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.55;
  margin-top: 8px;
  color: #5A4A46;
  font-weight: 500;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 138, 122, 0.1);
  box-shadow: 0 4px 20px rgba(61, 44, 41, 0.03);
  transition: 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.content-wall-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(255, 138, 122, 0.16);
  border-color: rgba(255, 138, 122, 0.25);
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 22px 22px 24px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #3D2C29;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: #7A6660;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 138, 122, 0.15);
  border-radius: 18px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 138, 122, 0.35);
}

.faq-item.open {
  border-color: rgba(255, 138, 122, 0.5);
  box-shadow: 0 8px 28px rgba(255, 138, 122, 0.1);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3D2C29;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 138, 122, 0.15), rgba(255, 184, 168, 0.15));
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}

.faq-item .faq-question::before {
  content: '+';
  position: absolute;
  right: 24px;
  color: #FF6B5E;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 2px;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  color: #5A4A46;
  line-height: 1.7;
  font-size: 0.93rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-item.open .faq-question::before {
  content: '−';
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #FF8A7A, #FF6B5E);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 0.7; transform: translateY(0); }
}

/* CTA横幅 */
.cta-banner {
  padding: 68px 48px;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(135deg, #FF8A7A 0%, #FF6B5E 60%, #FF9E9E 100%);
  color: #fff;
  box-shadow:
    0 20px 60px rgba(255, 107, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF6B5E;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* 页脚 */
.site-footer {
  padding: 64px 0 28px;
  background: linear-gradient(180deg, #FFE8DC 0%, #FFF4EC 100%);
  border-top: 1px solid rgba(255, 138, 122, 0.2);
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  color: #3D2C29;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: #7A6660;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #3D2C29;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20px;
  height: 2.5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF8A7A, #FFB8A8);
}

.footer-col a {
  display: block;
  color: #7A6660;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: 0.25s;
  line-height: 1.4;
}

.footer-col a:hover {
  color: #FF6B5E;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 138, 122, 0.15);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: #9A8A85;
}

.footer-bottom a {
  color: #FF6B5E;
  text-decoration: none;
}

/* 工具类 */
.text-accent {
  color: #FF6B5E;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5A4A46;
  line-height: 1.7;
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 920px) {
  .hero .container {
    gap: 32px;
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    min-height: 280px;
  }

  .hero-image img {
    min-height: 280px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 50px 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 122, 0.12);
    border: 1px solid rgba(255, 138, 122, 0.2);
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
  }

  .menu-toggle:hover {
    background: rgba(255, 138, 122, 0.2);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #FF6B5E;
    border-radius: 4px;
    transition: 0.3s;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 244, 236, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 138, 122, 0.2);
    box-shadow: 0 24px 48px rgba(61, 44, 41, 0.1);
    align-items: flex-start;
  }

  .main-nav.open a {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 138, 122, 0.08);
  }

  .main-nav.open .nav-cta {
    align-self: stretch;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid,
  .content-wall {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .cta-banner {
    padding: 44px 24px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stat-item {
    padding: 22px 16px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .hero-image {
    transform: rotate(1deg);
    min-height: 220px;
    border-width: 5px;
  }

  .hero-image img {
    min-height: 220px;
  }

  .faq-item .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .footer-bottom {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }
}