@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

/* ========================================
   SOCHUB — Global Styles
   Dark theme / Executive SaaS aesthetic
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --border: #1e1e2e;
  --border-light: #2a2a3d;
  --text-primary: #e8e8ed;
  --text-secondary: #8b8b9e;
  --text-muted: #5a5a6e;
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --accent-subtle: rgba(99, 102, 241, 0.1);
  --accent-border: rgba(99, 102, 241, 0.25);
  --green: #22c55e;
  --green-subtle: rgba(34, 197, 94, 0.1);
  --red: #ef4444;
  --red-subtle: rgba(239, 68, 68, 0.08);
  --font-display: 'Space Grotesk', 'SF Pro Display', sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --glow-accent-sm: 0 0 16px rgba(99, 102, 241, 0.3), 0 0 32px rgba(99, 102, 241, 0.1);
  --glow-accent-md: 0 0 24px rgba(99, 102, 241, 0.4), 0 0 64px rgba(99, 102, 241, 0.15);
  --grid-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M48 0H0v48' fill='none' stroke='%236366f1' stroke-opacity='.04' stroke-width='1'/%3E%3C/svg%3E");
  --max-width: 1120px;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  max-width: 640px;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

section + section {
  border-top: none;
  position: relative;
}

section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 30%, var(--border-light) 70%, transparent 100%);
}

.section-header {
  margin-bottom: 56px;
}

.section-header p {
  margin-top: 16px;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  border-bottom-color: var(--border-light);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--text-primary);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 8px 16px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--glow-accent-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
}

.btn-ghost:hover {
  color: var(--accent-hover);
}

.btn-ghost svg,
.btn-secondary svg,
.btn-primary svg {
  width: 16px;
  height: 16px;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px var(--accent-border), 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.03);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-subtle);
  color: var(--accent);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Grid --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --- Hero --- */
.hero {
  padding: 172px 0 104px;
  text-align: center;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.12) 0%, transparent 65%),
    var(--grid-bg);
  background-size: auto, 48px 48px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Steps / Process --- */
.step {
  position: relative;
  padding-left: 48px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9375rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Lists --- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.check-list .icon-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-list .icon-check svg {
  width: 12px;
  height: 12px;
}

.cross-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cross-list .icon-cross {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-subtle);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.cross-list .icon-cross svg {
  width: 10px;
  height: 10px;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

/* --- Tags / Badges --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--accent);
  font-family: var(--font-mono);
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Capacity Notice --- */
.capacity-notice {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.capacity-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 112px 0;
  background-image: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 32px;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- Framework Timeline --- */
.framework-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}

.framework-step + .framework-step {
  border-top: 1px solid var(--border);
}

.framework-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.framework-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.2);
}

.framework-step h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.framework-step p {
  margin-bottom: 20px;
}

.framework-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.framework-deliverables span {
  font-size: 0.8125rem;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .framework-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .framework-step-marker {
    flex-direction: row;
  }
}

/* --- Page Header --- */
.page-header {
  padding: 152px 0 72px;
  text-align: center;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
    var(--grid-bg);
  background-size: auto, 48px 48px;
}

.page-header .label {
  margin-bottom: 16px;
  display: inline-flex;
}

.page-header h1 {
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-header p {
  margin: 0 auto;
  font-size: 1.125rem;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Pricing Card --- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px var(--accent-border), 0 24px 64px rgba(99, 102, 241, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.6) 50%, transparent 100%);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 16px 0 8px;
  color: var(--text-primary);
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 12px;
  font-style: italic;
}

/* --- Platform Feature --- */
.platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
}

.platform-feature + .platform-feature {
  border-top: 1px solid var(--border);
}

.platform-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-feature-icon svg {
  width: 18px;
  height: 18px;
}

.platform-feature h4 {
  margin-bottom: 4px;
}

.platform-feature p {
  font-size: 0.875rem;
}

/* --- About --- */
.founder-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

.founder-info h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.founder-title {
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.founder-bio p {
  margin-bottom: 16px;
}

.founder-expertise {
  margin-top: 32px;
}

.founder-expertise h4 {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

@media (max-width: 600px) {
  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-avatar {
    margin: 0 auto;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Gradient accent line --- */
.accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 24px;
}

/* --- Metric --- */
.metric {
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Platform Showcase --- */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-item-text .label {
  display: inline-flex;
  margin-bottom: 12px;
}

.showcase-item-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.showcase-item-text p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.showcase-item-text .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.showcase-item-text .feature-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.showcase-image:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35), 0 0 40px rgba(99, 102, 241, 0.08);
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase-item .showcase-image {
    order: -1;
  }
}

/* --- Hero Screenshot --- */
.hero-screenshot {
  max-width: 960px;
  margin: 64px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: 0 0 0 1px var(--border), 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(99, 102, 241, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-screenshot:hover {
  box-shadow: 0 0 0 1px var(--accent-border), 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 120px rgba(99, 102, 241, 0.1);
  transform: translateY(-3px);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Screenshot Grid --- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.screenshot-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.screenshot-grid-item:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.screenshot-grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-grid-item figcaption {
  padding: 12px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b8b9e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: none;
}
