/* ═══════════════════════════════════════════════════════════
   BeeReach Marketing — Core Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --mkt-brand: #fff947;
  --mkt-brand-glow: rgba(255, 249, 71, 0.35);
  --mkt-brand-dim: rgba(255, 249, 71, 0.12);
  --mkt-bg-deep: #070b14;
  --mkt-bg-base: #0c1221;
  --mkt-bg-card: rgba(12, 18, 33, 0.65);
  --mkt-accent: #7c3aed;
  --mkt-accent-glow: rgba(124, 58, 237, 0.3);
  --mkt-text-primary: #f1f5f9;
  --mkt-text-secondary: #94a3b8;
  --mkt-text-tertiary: #64748b;
  --mkt-border: rgba(148, 163, 184, 0.1);
  --mkt-glass: rgba(255, 255, 255, 0.04);
  --mkt-glass-border: rgba(255, 255, 255, 0.08);
  --mkt-success: #22c55e;
  --mkt-radius: 16px;
  --mkt-radius-sm: 10px;
  --mkt-radius-xs: 6px;
  --mkt-nav-height: 72px;
  --mkt-section-gap: 120px;
  --mkt-max-width: 1200px;
}

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

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

body.mkt-body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--mkt-bg-deep);
  color: var(--mkt-text-primary);
  line-height: 1.7;
  font-size: 1.125rem;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

.mkt-section {
  padding: var(--mkt-section-gap) 0;
  position: relative;
}

.mkt-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.mkt-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--mkt-glass-border);
  background: var(--mkt-glass);
}

.mkt-section-badge--live {
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--mkt-success);
}

.mkt-section-badge--live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mkt-success);
  animation: mkt-pulse-dot 2s ease infinite;
}

.mkt-section-badge--soon {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--mkt-accent);
}

.mkt-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--mkt-text-primary);
}

.mkt-section-subtitle {
  font-size: 1.125rem;
  color: var(--mkt-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Navigation ── */
.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--mkt-nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.mkt-nav--scrolled {
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--mkt-border);
}

.mkt-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--mkt-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mkt-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--mkt-brand) 0%, #f59e0b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mkt-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mkt-text-secondary);
  transition: color 0.2s;
}

.mkt-nav__link:hover {
  color: var(--mkt-text-primary);
}

.mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Signed-in user nav ── */
.mkt-nav__user {
  position: relative;
}
.mkt-nav__user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 14px 5px 5px;
  cursor: pointer;
  color: var(--mkt-text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}
.mkt-nav__user-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mkt-nav__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 249, 71, 0.3);
}
.mkt-nav__avatar-fallback {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mkt-brand), #f59e0b);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-nav__user-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-nav__user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--mkt-bg-base);
  border: 1px solid var(--mkt-glass-border);
  border-radius: var(--mkt-radius-sm);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}
.mkt-nav__user-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mkt-nav__user-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--mkt-text-secondary);
  text-decoration: none;
  border: none;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.mkt-nav__user-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mkt-text-primary);
}
.mkt-nav__user-item--danger:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.mkt-nav__lang {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--mkt-radius-xs);
  color: var(--mkt-text-secondary);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.mkt-nav__lang:hover {
  color: var(--mkt-text-primary);
  background: var(--mkt-glass);
}

/* Hamburger */
.mkt-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mkt-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mkt-text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mkt-nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mkt-nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.mkt-nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mkt-nav__mobile {
  display: none;
  position: fixed;
  top: var(--mkt-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
}

.mkt-nav__mobile--open {
  display: flex;
}

.mkt-nav__mobile a,
.mkt-nav__mobile button {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  color: var(--mkt-text-secondary);
  border-bottom: 1px solid var(--mkt-border);
  text-align: left;
  transition: color 0.2s;
}

.mkt-nav__mobile a:hover,
.mkt-nav__mobile button:hover {
  color: var(--mkt-text-primary);
}

/* ── Buttons ── */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--mkt-radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mkt-btn--primary {
  background: var(--mkt-brand);
  color: #070b14;
  box-shadow: 0 0 20px var(--mkt-brand-glow);
}

.mkt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--mkt-brand-glow), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mkt-btn--ghost {
  background: transparent;
  border: 1px solid var(--mkt-glass-border);
  color: var(--mkt-text-primary);
}

.mkt-btn--ghost:hover {
  background: var(--mkt-glass);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.mkt-btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.mkt-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--mkt-radius);
}

/* ── Glass Cards ── */
.mkt-card {
  background: var(--mkt-bg-card);
  border: 1px solid var(--mkt-glass-border);
  border-radius: var(--mkt-radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

.mkt-card--glow {
  border-color: rgba(255, 249, 71, 0.2);
  box-shadow: 0 0 40px var(--mkt-brand-dim);
}

.mkt-card--glow:hover {
  border-color: rgba(255, 249, 71, 0.35);
  box-shadow: 0 0 60px var(--mkt-brand-dim), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mkt-card--dimmed {
  opacity: 0.55;
}

.mkt-card--dimmed:hover {
  opacity: 0.75;
}

.mkt-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  background: var(--mkt-brand-dim);
}

.mkt-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mkt-card__text {
  font-size: 0.95rem;
  color: var(--mkt-text-secondary);
  line-height: 1.7;
}

/* ── Hero ── */
.mkt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--mkt-nav-height);
  overflow: hidden;
}

.mkt-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mkt-hero__fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 40%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 60%, rgba(255, 249, 71, 0.08) 0%, transparent 50%),
              var(--mkt-bg-deep);
  z-index: 0;
}

.mkt-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.mkt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mkt-brand);
  border: 1px solid rgba(255, 249, 71, 0.2);
  background: rgba(255, 249, 71, 0.06);
  margin-bottom: 28px;
}

.mkt-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--mkt-brand) 0%, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mkt-hero__subtitle {
  font-size: 1.2rem;
  color: var(--mkt-text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.mkt-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.mkt-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mkt-hero__stat {
  text-align: center;
}

.mkt-hero__stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--mkt-text-primary);
  letter-spacing: -0.02em;
}

.mkt-hero__stat-label {
  font-size: 0.8rem;
  color: var(--mkt-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ── Features Grid ── */
.mkt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Workflow Steps ── */
.mkt-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mkt-step-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}

.mkt-step-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--mkt-brand);
}

.mkt-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mkt-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mkt-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mkt-glass-border);
}

/* ── Demo Sections ── */
.mkt-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mkt-demo--reversed {
  direction: rtl;
}

.mkt-demo--reversed > * {
  direction: ltr;
}

.mkt-demo__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mkt-demo__title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-demo__desc {
  font-size: 1rem;
  color: var(--mkt-text-secondary);
  line-height: 1.7;
}

.mkt-demo__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-demo__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--mkt-text-secondary);
}

.mkt-demo__feature::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2322c55e' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Use Cases ── */
.mkt-usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mkt-usecases-grid .mkt-card {
  padding: 36px 28px;
}

/* ── Impact / Metrics ── */
.mkt-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.mkt-metric-card {
  text-align: center;
  padding: 40px 32px;
}

.mkt-metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--mkt-brand);
  margin-bottom: 12px;
}

.mkt-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  border-radius: var(--mkt-radius);
  background: var(--mkt-bg-card);
  border: 1px solid var(--mkt-glass-border);
}

.mkt-quote__text {
  font-size: 1.1rem;
  color: var(--mkt-text-primary);
  margin-bottom: 16px;
}

.mkt-quote__author {
  font-weight: 700;
}

.mkt-quote__role {
  font-size: 0.9rem;
  color: var(--mkt-text-tertiary);
}

/* Demo Mockups */
.mkt-mockup {
  background: var(--mkt-bg-card);
  border: 1px solid var(--mkt-glass-border);
  border-radius: var(--mkt-radius);
  overflow: hidden;
  min-height: 400px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mkt-mockup__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--mkt-border);
  background: rgba(255, 255, 255, 0.02);
}

.mkt-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mkt-text-tertiary);
  opacity: 0.4;
}

.mkt-mockup__dot:nth-child(1) { background: #ef4444; opacity: 0.7; }
.mkt-mockup__dot:nth-child(2) { background: #f59e0b; opacity: 0.7; }
.mkt-mockup__dot:nth-child(3) { background: #22c55e; opacity: 0.7; }

.mkt-mockup__body {
  padding: 24px;
  min-height: 300px;
}

/* ── BeeLinks Phone Mockup ── */
.mkt-phone {
  width: 320px;
  margin: 0 auto;
  background: var(--mkt-bg-card);
  border: 2px solid var(--mkt-glass-border);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.1);
}

.mkt-phone__notch {
  width: 130px;
  height: 30px;
  background: var(--mkt-bg-deep);
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
}

.mkt-phone__screen {
  min-height: 520px;
  padding: 20px;
  transition: background 0.6s, color 0.6s;
}

/* ── Coming Soon Grid ── */
.mkt-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mkt-channels-grid .mkt-card {
  text-align: center;
  padding: 48px 24px;
}

.mkt-channels-grid .mkt-card__icon {
  margin: 0 auto 20px;
}

.mkt-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mkt-accent);
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.1);
  margin-top: 16px;
  animation: mkt-pulse-badge 3s ease infinite;
}

/* ── Why BeeReach / Comparison ── */
.mkt-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mkt-value-grid .mkt-card {
  text-align: center;
  padding: 48px 24px;
}

.mkt-value-highlight {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mkt-brand);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

/* ── Pricing ── */
.mkt-pricing {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mkt-pricing .mkt-card {
  text-align: left;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.mkt-pricing__plan {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-pricing__desc {
  font-size: 0.9rem;
  color: var(--mkt-text-tertiary);
  margin-bottom: 6px;
}

.mkt-pricing__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 249, 71, 0.16);
  color: var(--mkt-brand);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mkt-pricing__price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--mkt-brand);
  letter-spacing: -0.04em;
  margin-bottom: 2px;
}

.mkt-pricing__period {
  font-size: 1rem;
  color: var(--mkt-text-tertiary);
  margin-bottom: 2px;
}

.mkt-pricing__annual {
  font-size: 0.85rem;
  color: var(--mkt-text-tertiary);
  margin-bottom: 18px;
}

.mkt-pricing__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.mkt-pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--mkt-text-secondary);
}

.mkt-pricing__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-pricing__check svg {
  width: 12px;
  height: 12px;
  stroke: var(--mkt-success);
}

.mkt-pricing__note {
  font-size: 0.85rem;
  color: var(--mkt-text-tertiary);
  margin-top: 16px;
}

/* ── FAQ ── */
.mkt-faq {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-faq__item {
  background: var(--mkt-bg-card);
  border: 1px solid var(--mkt-glass-border);
  border-radius: var(--mkt-radius-sm);
  overflow: hidden;
}

.mkt-faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mkt-text-primary);
  text-align: left;
  transition: color 0.2s;
}

.mkt-faq__question:hover {
  color: var(--mkt-brand);
}

.mkt-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  stroke: var(--mkt-text-tertiary);
}

.mkt-faq__item--open .mkt-faq__chevron {
  transform: rotate(180deg);
}

.mkt-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mkt-faq__item--open .mkt-faq__answer {
  max-height: 300px;
}

.mkt-faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--mkt-text-secondary);
  line-height: 1.7;
}

/* ── Auth Modal ── */
.mkt-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mkt-auth-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.mkt-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.mkt-auth-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  padding: 8px;
}
.mkt-auth-modal__close {
  position: absolute;
  top: -40px;
  right: 4px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.mkt-auth-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mkt-auth-modal__fallback {
  text-align: center;
  padding: 32px;
  color: var(--mkt-text-secondary);
  font-size: 0.9375rem;
}
.mkt-auth-modal__fallback .mkt-btn {
  margin-top: 16px;
}
