@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

:root {
  --rice: #F8F3EC;
  --rice-light: #FDFAF5;
  --rice-deep: #F0E9DE;
  --card: #FFFDF8;
  --ink: #2E2A25;
  --ink-soft: #6E675E;
  --coral: #E05D47;
  --coral-dark: #C94B3A;
  --teal: #2E7A74;
  --teal-light: #E4F0EE;
  --gold: #D4A959;
  --border: #E6DCCC;
  --shadow: rgba(46, 42, 37, 0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--rice);
  background-image:
    radial-gradient(circle at 15% 30%, rgba(224, 93, 71, 0.03), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(46, 122, 116, 0.03), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212, 169, 89, 0.015), transparent 60%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  background: rgba(224, 93, 71, 0.22);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--rice-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section { padding: 80px 0; }
.section:nth-child(even) { background: var(--rice-light); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 243, 236, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 220, 204, 0.7);
  transition: box-shadow 0.3s ease;
}
.site-header:hover {
  box-shadow: 0 8px 30px rgba(46, 42, 37, 0.04);
}

.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.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 1px;
  position: relative;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(224, 93, 71, 0.35);
  position: relative;
}
.logo-icon::after {
  content: '▶';
  font-size: 10px;
  margin-left: 1px;
}

.site-header .logo-text {
  background: linear-gradient(135deg, var(--coral) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.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;
  transition: color 0.25s ease;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.main-nav a:hover {
  color: var(--coral);
}
.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 4px 16px rgba(224, 93, 71, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}
.nav-cta:hover {
  box-shadow: 0 8px 24px rgba(224, 93, 71, 0.4);
  transform: translateY(-1px);
  color: #fff !important;
}
.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.3s ease;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--coral);
}
.menu-toggle:hover span {
  background: var(--coral);
}

.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); }

/* ─────────────  HERO  ───────────── */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224, 93, 71, 0.06), transparent 50%),
    radial-gradient(ellipse at 15% 90%, rgba(46, 122, 116, 0.05), transparent 40%),
    linear-gradient(180deg, var(--rice) 0%, var(--rice-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px solid rgba(224, 93, 71, 0.07);
  box-shadow:
    0 0 0 50px rgba(224, 93, 71, 0.02),
    0 0 0 100px rgba(224, 93, 71, 0.015),
    0 0 0 150px rgba(224, 93, 71, 0.008);
}

.hero::after {
  content: '';
  position: absolute;
  left: 2%;
  top: 10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(46, 122, 116, 0.1), transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  padding-left: 8px;
}

.hero-content::after {
  content: '国产 · 精彩';
  position: absolute;
  right: -46px;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  letter-spacing: 8px;
  color: rgba(224, 93, 71, 0.35);
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
  line-height: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(224, 93, 71, 0.08);
  border: 1px solid rgba(224, 93, 71, 0.18);
  color: var(--coral-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '●';
  font-size: 6px;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.18;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--ink);
}

.hero h1 .text-accent-line {
  display: inline-block;
  color: var(--coral);
  position: relative;
  padding-bottom: 4px;
}
.hero h1 .text-accent-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, rgba(224, 93, 71, 0.22), rgba(212, 169, 89, 0.18));
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.72;
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-buttons .btn {
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 700;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  box-shadow: 0 10px 24px rgba(224, 93, 71, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(224, 93, 71, 0.45);
}

.hero-buttons .btn-outline {
  color: var(--teal);
  border: 1.8px solid var(--teal);
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-buttons .btn-outline:hover {
  background: rgba(46, 122, 116, 0.08);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(46, 42, 37, 0.12);
  transform: rotate(2.5deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, var(--teal), rgba(46, 122, 116, 0.4));
  border-radius: 28px;
  z-index: 0;
  opacity: 0.12;
  transition: opacity 0.3s ease;
}

.hero-image:hover::before {
  opacity: 0.2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-image::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 72px;
  text-align: center;
  text-indent: 4px;
  box-shadow:
    0 8px 28px rgba(224, 93, 71, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.hero-image:hover::after {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 14px 36px rgba(224, 93, 71, 0.55),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* ─────────────  BUTTONS  ───────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(224, 93, 71, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(224, 93, 71, 0.42);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.8px solid var(--teal);
  color: var(--teal) !important;
}
.btn-outline:hover {
  background: rgba(46, 122, 116, 0.07);
}

/* ─────────────  SECTION LABELS & TITLES  ───────────── */

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 4px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  margin-bottom: 40px;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────  CARDS GRID  ───────────── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: linear-gradient(145deg, var(--card) 0%, var(--rice-light) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(224, 93, 71, 0.07), transparent 70%);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 93, 71, 0.25);
  box-shadow: 0 18px 44px rgba(46, 42, 37, 0.09);
}

.category-card:hover::before {
  transform: scale(1.6);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #fff;
  box-shadow: 0 6px 16px rgba(224, 93, 71, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, var(--teal), #1D5E58);
  box-shadow: 0 6px 16px rgba(46, 122, 116, 0.25);
}

.category-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, #D4A959, #B88A3A);
  box-shadow: 0 6px 16px rgba(212, 169, 89, 0.3);
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(-8deg);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.category-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.85;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--coral);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ─────────────  FEATURE BLOCK  ───────────── */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(46, 42, 37, 0.1);
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46, 42, 37, 0.06));
  z-index: 1;
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-block:hover .feature-image img {
  transform: scale(1.03);
}

.feature-text {
  position: relative;
}

.feature-text .section-label {
  margin-bottom: 14px;
}

.feature-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.35;
}

.feature-text p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--teal);
  background: var(--teal-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─────────────  STATS BAR  ───────────── */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 20px;
  padding: 32px 16px;
  transition: all 0.35s cubic-bezier(0.2, 0.6, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-item:nth-child(1) { border-top-color: var(--coral); }
.stat-item:nth-child(2) { border-top-color: var(--teal); }
.stat-item:nth-child(3) { border-top-color: var(--gold); }
.stat-item:nth-child(4) { border-top-color: var(--coral-dark); }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  border-radius: 0 0 4px 4px;
  z-index: 1;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(46, 42, 37, 0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(2) .stat-number {
  background: linear-gradient(135deg, var(--teal), #1D5E58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(3) .stat-number {
  background: linear-gradient(135deg, var(--gold), #B88A3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(4) .stat-number {
  background: linear-gradient(135deg, var(--coral-dark), #8E2E1F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.65;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ─────────────  CONTENT WALL  ───────────── */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.content-wall-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
  position: relative;
}

.content-wall-item::after {
  content: 'HD';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.content-wall-item:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 93, 71, 0.2);
  box-shadow: 0 20px 44px rgba(46, 42, 37, 0.1);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 20px;
}

.content-wall-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  line-height: 1.4;
}

.content-wall-body p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  opacity: 0.85;
}

/* ─────────────  FAQ  ───────────── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(46, 122, 116, 0.3);
}

.faq-item.open {
  border-color: rgba(46, 122, 116, 0.35);
  box-shadow: 0 8px 24px rgba(46, 122, 116, 0.07);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.faq-item .faq-question::after {
  content: '+';
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-question::after {
  content: '−';
  background: var(--teal);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.75;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px dashed var(--border);
  margin: 0 22px;
  padding-top: 14px;
  padding-right: 0;
  padding-left: 0;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────  CTA BANNER  ───────────── */

.cta-banner {
  padding: 60px 40px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(224, 93, 71, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.03),
    0 0 0 60px rgba(255, 255, 255, 0.02);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 12%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral-dark) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ─────────────  FOOTER  ───────────── */

.site-footer {
  padding: 64px 0 28px;
  background: var(--rice-deep);
  border-top: 1px solid var(--border);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
  opacity: 0.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 260px;
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  letter-spacing: 1px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 4px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
  padding-left: 0;
}

.footer-col ul a:hover {
  color: var(--coral);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 42, 37, 0.08);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 1px;
}

/* ─────────────  UTILITIES  ───────────── */

.text-accent {
  color: var(--coral);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.72;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.92rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ─────────────  RESPONSIVE  ───────────── */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .hero-content::after {
    display: none;
  }

  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--rice-light);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 6px;
    box-shadow: 0 24px 48px rgba(46, 42, 37, 0.1);
    animation: fadeInDown 0.4s ease;
  }

  .main-nav.open a {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: background 0.25s ease;
  }

  .main-nav.open a:hover {
    background: rgba(224, 93, 71, 0.07);
  }

  .main-nav.open a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    width: fit-content;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .category-card {
    padding: 24px 20px;
  }

  .content-wall-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}