/* =============================================
   БИЗНЕС ПУЛЬС — ГЛАВНЫЕ СТИЛИ
   ============================================= */

:root {
  --accent:       #F5B82E;
  --accent-dark:  #d49a1a;
  --dark:         #0A0C10;
  --dark-2:       #111318;
  --dark-3:       #1C2030;
  --dark-card:    #161B27;
  --light:        #F0F2F7;
  --text:         #C8CCDA;
  --text-muted:   #6E748A;
  --border:       rgba(255,255,255,0.07);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --shadow-card:  0 20px 60px rgba(0,0,0,0.35);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', sans-serif;
  --trans:        0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────── */
::selection { background: var(--accent); color: #000; }

/* ─── NAVBAR ────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 0.7rem 0;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.brand-icon {
  color: var(--accent);
  margin-right: 4px;
}
.nav-link {
  color: var(--text) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem !important;
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: all var(--trans);
}
.nav-link:hover { color: #fff !important; }
.nav-link:hover::after { left: 0.8rem; right: 0.8rem; }
.btn-cta-nav {
  background: var(--accent);
  color: #000 !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--trans);
}
.btn-cta-nav:hover { background: #fff; transform: translateY(-2px); }

/* Toggler */
.navbar-toggler { border: none; background: none; padding: 0; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; }
.toggler-icon span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--trans);
}
.navbar-toggler:focus { box-shadow: none; }

/* ─── SECTION HELPERS ───────────────────────── */
.section-pad { padding: 7rem 0; }
.section-tag {
  display: inline-block;
  background: rgba(245, 184, 46, 0.12);
  border: 1px solid rgba(245, 184, 46, 0.3);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-tag.light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: #fff; }
.highlight {
  background: linear-gradient(90deg, var(--accent), #f7d067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-light {
  background: linear-gradient(90deg, var(--accent), #ffe48a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ─── BUTTONS ───────────────────────────────── */
.btn-primary-custom {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all var(--trans);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 184, 46, 0.35);
}
.btn-ghost-custom {
  background: transparent;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all var(--trans);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-ghost-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn-outline-custom {
  background: transparent;
  color: var(--accent);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--accent);
  transition: all var(--trans);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
}
.btn-lg-custom { padding: 0.9rem 2rem !important; font-size: 1rem !important; }

/* ─── INTERSECTION OBSERVER ANIMATIONS ─────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── HERO ──────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 100vh;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f5b82e, transparent 70%);
  top: -200px; right: -100px;
  animation: floatShape 10s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #667eea, transparent 70%);
  bottom: -100px; left: 10%;
  animation: floatShape 14s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f5576c, transparent 70%);
  top: 50%; left: 30%;
  animation: floatShape 18s ease-in-out infinite;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,46,0.08);
  border: 1px solid rgba(245,184,46,0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), #f7d067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: var(--text);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatars-stack { display: flex; }
.avatars-stack img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  object-fit: cover;
}
.avatars-stack img:first-child { margin-left: 0; }
.proof-text { font-size: 0.88rem; color: var(--text-muted); }
.proof-text strong { color: #fff; }

/* Hero cards */
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 420px;
}
.main-hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 280px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}
.mhc-header { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.mhc-cat, .mhc-hot {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}
.mhc-cat { background: rgba(67,233,123,0.12); color: #43e97b; }
.mhc-hot { background: rgba(245,87,108,0.12); color: #f5576c; }
.mhc-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.mhc-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.mhc-meta i { color: var(--accent); }
.mhc-bar { height: 6px; background: var(--dark-3); border-radius: 3px; margin-bottom: 0.4rem; overflow: hidden; }
.mhc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #f7d067); border-radius: 3px; }
.mhc-bar-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.mhc-btn {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--trans);
}
.mhc-btn:hover { background: #fff; }

.floating-card {
  position: absolute;
  background: rgba(22, 27, 39, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(15px);
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.card-1 { top: 15px; right: -30px; animation: floatCard 4s ease-in-out infinite; }
.card-2 { bottom: 30px; left: -30px; animation: floatCard 4s ease-in-out infinite 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-icon { font-size: 1.5rem; flex-shrink: 0; }
.fc-label { font-size: 0.7rem; color: var(--text-muted); }
.fc-value { font-size: 0.88rem; font-weight: 700; color: #fff; }
.fc-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.badge-green { background: rgba(67,233,123,0.15); color: #43e97b; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ─── MARQUEE ───────────────────────────────── */
.marquee-section {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1.5rem;
}
.marquee-inner .sep { color: var(--accent); padding: 0 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── IDEAS SECTION ─────────────────────────── */
.ideas-section { background: var(--dark); }

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* Idea card */
.idea-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans);
  height: 100%;
  position: relative;
}
.idea-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,184,46,0.3);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.idea-card--featured {
  border-color: rgba(245,184,46,0.4);
  box-shadow: 0 0 0 1px rgba(245,184,46,0.1);
}
.featured-ribbon {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  z-index: 2;
}
.idea-card-img {
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idea-emoji { font-size: 3.5rem; }
.idea-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.badge-purple { background: rgba(102,126,234,0.2); color: #a0b0ff; }
.badge-pink   { background: rgba(245,87,108,0.2);  color: #ff8fa0; }
.badge-green  { background: rgba(67,233,123,0.2);  color: #43e97b; }
.badge-blue   { background: rgba(79,172,254,0.2);  color: #7fc5fe; }
.badge-orange { background: rgba(250,112,154,0.2); color: #fa709a; }

.idea-card-body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.idea-meta-row { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.idea-meta-row i { color: var(--accent); }
.idea-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.idea-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.idea-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  padding: 0.75rem 0;
}
.metric { flex: 1; text-align: center; }
.metric + .metric { border-left: 1px solid var(--border); }
.metric-val { font-size: 0.9rem; font-weight: 700; color: #fff; }
.metric-key { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.idea-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap var(--trans);
}
.idea-link:hover { gap: 0.75rem; }

/* ─── CATEGORIES ────────────────────────────── */
.categories-section { background: var(--dark-2); }

.cat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  cursor: pointer;
  transition: all var(--trans);
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cat-color), transparent 70%);
  opacity: 0;
  transition: opacity var(--trans);
}
.cat-card:hover { transform: translateY(-5px); border-color: var(--cat-color); }
.cat-card:hover::before { opacity: 0.07; }
.cat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.cat-name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.cat-count { font-size: 0.78rem; color: var(--text-muted); }
.cat-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--trans);
}
.cat-card:hover .cat-arrow { color: var(--cat-color); transform: translate(3px, -3px); }

/* ─── STATS SECTION ─────────────────────────── */
.stats-section { background: var(--dark-3); }
.stats-inner {
  background: linear-gradient(135deg, rgba(245,184,46,0.05) 0%, rgba(102,126,234,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
}
@media (max-width: 768px) { .stats-inner { padding: 2rem; } }

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--trans);
}
.stat-card:hover { border-color: rgba(245,184,46,0.3); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: inline;
  line-height: 1;
}
.stat-plus, .stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.stat-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.3rem;
  opacity: 0.4;
}

/* ─── HOW IT WORKS ──────────────────────────── */
.how-section { background: var(--dark); }

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.step-card:hover::after { transform: scaleX(1); }
.step-card--center {
  background: linear-gradient(145deg, rgba(245,184,46,0.08), var(--dark-card));
  border-color: rgba(245,184,46,0.3);
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,184,46,0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── MENTORS ───────────────────────────────── */
.mentors-section { background: var(--dark-2); }

.mentor-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--trans);
}
.mentor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,184,46,0.3);
}
.mentor-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.mentor-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: border-color var(--trans);
}
.mentor-card:hover .mentor-img { border-color: var(--accent); }
.mentor-online {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #43e97b;
  border: 2px solid var(--dark-card);
  border-radius: 50%;
}
.mentor-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.mentor-role { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.75rem; }
.mentor-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.mentor-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.mentor-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonials-section { background: var(--dark); }

.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--trans);
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.12); }
.testi-card--highlight {
  background: linear-gradient(145deg, rgba(245,184,46,0.06), var(--dark-card));
  border-color: rgba(245,184,46,0.25);
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: -1.5rem;
}
.testi-text { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; color: #fff; font-size: 0.88rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; }

/* ─── CTA / CONTACT ─────────────────────────── */
.cta-section { background: var(--dark-2); }
.cta-inner {
  background: linear-gradient(135deg, #1a1f30 0%, #0f1219 100%);
  border: 1px solid rgba(245,184,46,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .cta-inner { padding: 2.5rem 1.5rem; } }
.cta-bg-decor {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,184,46,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-tag {
  display: inline-block;
  background: rgba(245,184,46,0.1);
  border: 1px solid rgba(245,184,46,0.25);
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-sub { color: var(--text-muted); font-size: 0.95rem; max-width: 400px; }
.cta-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.cta-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9rem !important;
  padding: 0.7rem 1rem !important;
  transition: border-color var(--trans) !important;
}
.cta-input::placeholder { color: var(--text-muted) !important; }
.cta-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--accent) !important;
}
.cta-input option { background: var(--dark-3); color: #fff; }
.cta-disclaimer { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; margin-bottom: 0; }

/* ─── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-about { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--trans);
}
.footer-socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.footer-heading { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--accent); }
.footer-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-form { display: flex; gap: 0; }
.footer-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: #fff;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--trans);
}
.footer-input:focus { border-color: var(--accent); }
.footer-input::placeholder { color: var(--text-muted); }
.footer-btn {
  background: var(--accent);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #000;
  cursor: pointer;
  transition: background var(--trans);
  font-size: 1rem;
}
.footer-btn:hover { background: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; margin-left: 1.5rem; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── BACK TO TOP ───────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #fff; transform: translateY(-4px); }

/* ─── HIDDEN FILTER ITEMS ───────────────────── */
.idea-card-wrap.hidden {
  display: none !important;
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 992px) {
  .hero-card-stack { width: 280px; }
}
@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-ghost-custom { justify-content: center; }
  .stats-inner { padding: 1.5rem; }
  .filter-tabs { gap: 0.35rem; }
  .filter-btn { padding: 0.35rem 0.9rem; font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 0.75rem; }
}
