/*
Theme Name: 爱亚仓主题
Theme URI: https://www.aiyacang.com
Description: 爱亚仓海外仓一站式跨境服务 WordPress 主题，基于原始网站结构与风格构建
Version: 2.0.0
Author: AI Assistant
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aiyacang
*/

:root {
  /* 深海蓝渐变主色 */
  --primary-100: #e8f4fd;
  --primary-300: #a8d4f0;
  --primary-500: #2b7cb5;
  --primary-600: #1a6599;
  --primary-700: #0d4f7a;
  --primary-800: #083858;
  --primary-900: #041f38;

  /* 琥珀橙点缀色 */
  --accent-300: #fde3b0;
  --accent-400: #fbbf60;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-700: #b45309;

  /* 中性色 */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-white: #ffffff;
  --bg-gray: #f8fafc;
  --bg-blue-tint: #f0f7ff;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-accent: 0 4px 20px rgba(245,158,11,0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--text-primary);
  line-height: 1.75;
  background: var(--bg-white);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-600); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-600); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: var(--primary-300); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-700);
  letter-spacing: -0.5px;
}

.site-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: var(--shadow-sm);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.main-nav li { position: relative; }

.main-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-700);
  background: var(--primary-100);
}

.main-nav a .badge {
  background: var(--accent-500);
  color: white;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 50%, #061525 100%);
  color: white;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43,124,181,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent-400);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 750px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  opacity: 0.8;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--accent-500);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  letter-spacing: 0.3px;
}

.btn:hover {
  background: var(--accent-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,158,11,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 4px 16px rgba(43,124,181,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 90px 0;
}

.section-alt { background: var(--bg-blue-tint); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-800);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.3;
}

.section-title p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== PLATFORM CERTIFICATIONS ===== */
.platform-section { background: var(--bg-blue-tint); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.platform-card h3 {
  font-size: 18px;
  color: var(--primary-800);
  margin-bottom: 18px;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.platform-card ul { list-style: none; }

.platform-card li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.platform-card li:last-child { border-bottom: none; }

.platform-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-600);
  font-weight: 800;
  font-size: 13px;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h3 {
  font-size: 30px;
  color: var(--primary-800);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-400);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-500);
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}

.service-card:hover::after { height: 100%; }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.service-card h3 {
  font-size: 18px;
  color: var(--primary-800);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent-400);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.category-tab:hover,
.category-tab.active {
  background: var(--primary-700);
  color: white;
  border-color: var(--primary-700);
  box-shadow: var(--shadow-md);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-card-thumb .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

.blog-card h3 {
  font-size: 17px;
  color: var(--primary-800);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 700;
  flex: 1;
}

.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--accent-600); }

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.blog-card-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-400);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-300), var(--accent-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.2);
}

.feature-card h3 {
  font-size: 19px;
  color: var(--primary-800);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); border-color: var(--primary-300); }

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent-500);
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

.faq-toggle { color: var(--accent-500); font-size: 18px; transition: var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(180deg); }

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-card-content { padding: 28px; }

.case-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-card-meta .brand-tag {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.case-card h3 {
  font-size: 20px;
  color: var(--primary-800);
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.case-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== NEWS LETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  color: white;
  padding: 70px 0;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 800;
}

.newsletter-inner p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--accent-400); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  color: white;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 35px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050f1e;
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--accent-400); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== SINGLE POST ===== */
.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.single-post .post-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border);
}

.single-post .post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.single-post .post-meta .cat-tag {
  background: var(--accent-500);
  color: white;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.single-post h1 {
  font-size: 34px;
  color: var(--primary-800);
  line-height: 1.35;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.post-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}

.post-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.post-content h2 {
  font-size: 24px;
  color: var(--primary-800);
  margin: 40px 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent-400);
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.post-content h3 {
  font-size: 20px;
  color: var(--primary-700);
  margin: 28px 0 14px;
  font-weight: 700;
}

.post-content p {
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.post-content ul, .post-content ol {
  margin: 16px 0 22px 24px;
}

.post-content li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }

.post-content a { color: var(--accent-600); }
.post-content a:hover { text-decoration: underline; }

.post-content blockquote {
  background: var(--bg-blue-tint);
  border-left: 4px solid var(--accent-500);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: 15px;
  color: var(--primary-700);
  font-weight: 500;
}

/* ===== PAGINATION ===== */
.pagination-wrap {
  text-align: center;
  margin-top: 50px;
}

.pagination-wrap .pagination {
  display: inline-flex;
  gap: 8px;
}

.pagination-wrap .page-numbers {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
  background: var(--primary-700);
  color: white;
  border-color: var(--primary-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .hero-desc { font-size: 15px; }
  .hero { padding: 60px 0 80px; }

  .section { padding: 60px 0; }
  .section-title h2 { font-size: 28px; }

  .platform-grid,
  .services-grid,
  .features-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 38px; }

  .about-content { grid-template-columns: 1fr; gap: 30px; }
  .cases-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .main-nav ul { display: none; }

  .newsletter-form { flex-direction: column; }

  .single-post h1 { font-size: 26px; }
  .post-featured-img img { height: 220px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}