/* ============================================
   e 社區 - 設計系統 v8.1 (Conversion-Optimized)
   風格：Warm Trust + SaaS Best Practices
   - Outfit 字體（取代系統字）
   - 品牌色 warm orange
   - Diffusion shadow
   - 大量留白 + 大圓角
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@400;500;700;800&display=swap');

:root {
  /* === Brand Colors (Warm Trust) === */
  --primary: #f59e0b;        /* amber-500 */
  --primary-light: #fbbf24;  /* amber-400 */
  --primary-dark: #d97706;   /* amber-600 */
  --primary-50: #fffbeb;
  --primary-100: #fef3c7;
  --primary-200: #fde68a;

  --secondary: #84cc16;      /* lime-500 */
  --secondary-light: #a3e635;
  --secondary-dark: #65a30d;

  --accent: #fb923c;         /* orange-400 */
  --pink: #f472b6;           /* 用於 CTA 漸層 */

  /* === Surfaces === */
  --bg: #ffffff;
  --bg-warm: #fffbeb;
  --bg-cream: #fef3c7;
  --bg-soft: #fef9f0;
  --bg-dark: #1c1917;        /* footer */

  /* === Text === */
  --text: #1c1917;           /* stone-900 */
  --text-2: #44403c;         /* stone-700 */
  --text-muted: #78716c;     /* stone-500 */
  --text-light: #a8a29e;     /* stone-400 */

  /* === Borders === */
  --border: #fde68a;
  --border-light: #fef3c7;
  --border-strong: #fbbf24;

  /* === Status === */
  --success: #84cc16;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* === Shadows (Diffusion) === */
  --shadow-xs: 0 1px 2px rgba(245, 158, 11, 0.04);
  --shadow-sm: 0 2px 8px rgba(245, 158, 11, 0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px -2px rgba(245, 158, 11, 0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px -4px rgba(245, 158, 11, 0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 40px -8px rgba(245, 158, 11, 0.14), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 60px -12px rgba(245, 158, 11, 0.18), 0 12px 24px rgba(0,0,0,0.04);

  /* === Radii === */
  --r-sm: 8px;
  --r: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* === Spacing === */
  --container: 1200px;
  --gap: 24px;
  --section-py: 100px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 1em; color: var(--text-2); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
  color: white;
}
.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}
.btn-secondary:hover {
  background: #65a30d;
  transform: translateY(-2px);
  color: white;
}
.btn-outline {
  background: white;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* === Cards === */
.card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  padding: 28px;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-cream);
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}
.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav .logo-img { height: 32px; width: 32px; border-radius: var(--r-sm); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r);
  color: var(--text-2);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary-dark);
  background: var(--bg-warm);
}
.nav-links a.nav-cta {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
  margin-left: 8px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}
.nav-links a.nav-cta:hover { color: white; transform: translateY(-1px); }
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta):not(.nav-login) { display: none; }
  .nav-links { gap: 8px; }
}

/* ============================================
   HERO (Split Layout + Product Visual)
   ============================================ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.55;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-friction {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-friction span { display: inline-flex; align-items: center; gap: 4px; }
.hero-friction .check { color: var(--success); font-weight: 700; }

/* === Product Visual (Dashboard Mockup) === */
.product-mockup {
  position: relative;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  max-width: 100%;
  font-size: 12px;
}
.mockup-bar {
  background: #f8fafc;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.mockup-bar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.mockup-bar .dot.red { background: #ef4444; }
.mockup-bar .dot.yellow { background: #f59e0b; }
.mockup-bar .dot.green { background: #10b981; }
.mockup-bar .url {
  flex: 1; text-align: center; font-size: 10px; color: var(--text-muted);
  background: white; padding: 3px 10px; border-radius: var(--r-sm); margin-left: 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mockup-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  min-height: 280px;
}
.mockup-sidebar {
  background: #fafafa;
  border-radius: var(--r-sm);
  padding: 10px 8px;
}
.mockup-logo {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
  padding: 0 4px;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-nav-item svg { width: 14px; height: 14px; flex-shrink: 0; stroke-width: 2; }
.mockup-nav-item.active {
  background: var(--primary-100);
  color: var(--primary-dark);
  font-weight: 600;
}
.mockup-content { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.mockup-title { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-btn {
  background: var(--primary);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.mockup-stat {
  background: #fafafa;
  padding: 6px 4px;
  border-radius: var(--r-sm);
  text-align: center;
  min-width: 0;
}
.mockup-stat .num { font-size: 13px; font-weight: 800; color: var(--primary-dark); line-height: 1.2; }
.mockup-stat .label { font-size: 9px; color: var(--text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-msg {
  background: var(--primary-50);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 11px;
  border-left: 3px solid var(--primary);
}
.mockup-msg .head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 3px;
  font-size: 11px;
}
.mockup-msg .head svg { width: 12px; height: 12px; flex-shrink: 0; }
.mockup-msg .body { color: var(--text-2); font-size: 10px; line-height: 1.4; }
.mockup-msg .meta { color: var(--text-muted); font-size: 9px; margin-top: 3px; }

/* === Trust Bar === */
.trust-bar {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* === Logo Wall (Social Proof) === */
.logo-wall {
  padding: 50px 0;
  background: var(--bg-warm);
  text-align: center;
}
.logo-wall-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 28px;
}
.logo-wall-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo-wall-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: all 0.2s;
}
.logo-wall-item:hover {
  opacity: 1;
  color: var(--text);
}

/* === Section === */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
}
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-soft { background: var(--bg-soft); }
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  background: var(--bg-cream);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section h2 { margin-bottom: 16px; letter-spacing: -0.025em; }
.section-desc { font-size: 17px; color: var(--text-muted); }

/* === Bento Grid (不對稱 3 欄) === */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.bento-card {
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.bento-card.featured {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 60%);
  border-color: var(--border);
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.bento-icon svg { width: 24px; height: 24px; stroke-width: 2; }
.bento-card h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.02em; }
.bento-card p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.6; }
.bento-card .bento-visual {
  margin-top: 20px;
  padding: 16px;
  background: white;
  border-radius: var(--r);
  border: 1px solid var(--border-light);
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-row: auto; }
}

/* === Feature Tabs === */
.feature-tabs {
  display: flex;
  gap: 6px;
  background: white;
  padding: 6px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-light);
  margin: 0 auto 48px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.feature-tab {
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feature-tab:hover { color: var(--primary-dark); background: var(--bg-warm); }
.feature-tab.active {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.feature-tab svg { width: 16px; height: 16px; }
.feature-panel { display: none; }
.feature-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.feature-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.feature-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.feature-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* === Role Card === */
.role-card {
  text-align: center;
  padding: 32px 22px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  transition: all 0.3s;
}
.role-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.role-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}
.role-card-icon svg { width: 32px; height: 32px; stroke-width: 2; }
.role-card h4 { margin: 8px 0; }
.role-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.role-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  text-align: left;
  font-size: 13px;
  color: var(--text-2);
}
.role-card ul li { padding: 4px 0 4px 22px; position: relative; }
.role-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.roles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1024px) { .roles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 30%);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.01em; }
.price-target { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.price-amount .num {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.price-amount .unit { font-size: 15px; color: var(--text-muted); }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--text-2);
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--success);
  font-weight: 700;
}
.price-features li.no { color: var(--text-light); }
.price-features li.no::before { content: '—'; color: var(--text-light); }
.price-cta { margin-top: auto; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}

/* === Compare Table === */
.compare-wrap { max-width: 1000px; margin: 80px auto 0; overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.compare-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--text);
}
.compare-table td { color: var(--text-2); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--text-light); }
.compare-table .feature { font-weight: 600; color: var(--text); }

/* === FAQ === */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] { border-color: var(--border); box-shadow: var(--shadow-sm); }
.faq-summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 15px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; font-size: 14px; }

/* === Testimonial (real, specific) === */
.testimonial {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-mark {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-family: serif;
  line-height: 1;
}
.testimonial-quote {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  margin: 12px 0 20px;
  letter-spacing: -0.005em;
}
.testimonial-quote strong { color: var(--primary-dark); font-weight: 700; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* === Communities === */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.community-pill {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.community-pill:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.community-pill .name { font-weight: 700; margin-bottom: 2px; }
.community-pill .meta { font-size: 12px; color: var(--text-muted); }

/* === CTA Section === */
.cta-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(132, 204, 22, 0.3), transparent 50%),
    linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #f472b6 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='75' cy='75' r='1' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: white; letter-spacing: -0.03em; }
.cta-section p { color: rgba(255,255,255,0.95); font-size: 18px; }
.cta-section .btn-primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.cta-section .btn-primary:hover { color: var(--primary-dark); transform: translateY(-2px); }
.cta-section .btn-outline {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.25);
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-section .hero-friction { color: rgba(255,255,255,0.9); justify-content: center; }
.cta-section .hero-friction .check { color: white; }

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info-card {
  background: linear-gradient(135deg, #fffbeb, #fef9f0);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-info-value { font-weight: 700; color: var(--text); margin-top: 2px; font-size: 15px; }
.contact-info-value a { color: var(--text); }
.contact-info-value a:hover { color: var(--primary-dark); }
.contact-form {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--danger); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: all 0.2s;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* === Content Pages === */
.content-page { background: var(--bg-soft); min-height: 100vh; }
.content-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #fffbeb 0%, var(--bg-soft) 100%);
}
.content-hero h1 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.025em; }
.content-hero .lead { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.content-body {
  background: white;
  border-radius: var(--r-xl);
  padding: 48px;
  margin: 0 auto 80px;
  max-width: 880px;
  box-shadow: var(--shadow);
}
.content-body h2 { color: var(--text); font-size: 24px; margin: 32px 0 12px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { color: var(--primary-dark); font-size: 19px; margin: 24px 0 8px; }
.content-body h4 { color: var(--text-2); font-size: 16px; margin: 20px 0 8px; }
.content-body p { line-height: 1.8; color: var(--text-2); }
.content-body ul, .content-body ol { line-height: 1.8; color: var(--text-2); padding-left: 24px; }
.content-body li { margin: 6px 0; }
.content-body strong { color: var(--text); }
.content-body table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.content-body table th, .content-body table td { padding: 10px 12px; border: 1px solid var(--border-light); text-align: left; }
.content-body table th { background: var(--bg-warm); font-weight: 600; }
.content-body code { background: var(--bg-warm); padding: 2px 6px; border-radius: 4px; font-size: 14px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover { color: var(--primary); }
@media (max-width: 768px) {
  .content-body { padding: 28px 20px; }
}

/* === Footer === */
.site-footer {
  background: #1c1917;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
  margin-top: 0;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.site-footer-brand .logo-img { height: 32px; width: 32px; border-radius: var(--r-sm); }
.site-footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.site-footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.site-footer a:hover { color: white; }
.site-footer-social { display: flex; gap: 8px; margin-top: 16px; }
.site-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
}
.site-footer-social a:hover { background: var(--primary); color: white; }
.site-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.site-footer-bottom a { display: inline-block; color: rgba(255,255,255,0.6); margin: 0 8px; }
@media (max-width: 1024px) {
  .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}
