/* ============================================================
   DEREEV THEME — MAIN STYLESHEET
   Professional Trading Bot Platform
   Colors: #006d5a (Forest Green) + White
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --green:        #006d5a;
  --green-dark:   #004f41;
  --green-deep:   #003830;
  --green-light:  #00896f;
  --green-glow:   rgba(0, 109, 90, 0.15);
  --green-subtle: rgba(0, 109, 90, 0.08);

  --white:        #ffffff;
  --off-white:    #f7faf9;
  --pearl:        #eef4f2;

  --text-primary:   #0d1f1c;
  --text-secondary: #3a5450;
  --text-muted:     #6b8f8a;

  --border:         rgba(0, 109, 90, 0.15);
  --border-strong:  rgba(0, 109, 90, 0.3);

  --shadow-sm:  0 2px 12px rgba(0, 109, 90, 0.08);
  --shadow-md:  0 8px 32px rgba(0, 109, 90, 0.12);
  --shadow-lg:  0 24px 64px rgba(0, 109, 90, 0.18);
  --shadow-xl:  0 40px 80px rgba(0, 109, 90, 0.22);

  --font-display: 'Manrope', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --nav-height: 72px;
  --max-width:  1200px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem);  letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem);  letter-spacing: -0.015em; }
h4 { font-size: 1.2rem;  letter-spacing: -0.01em; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p { color: var(--text-secondary); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

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

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 64px 0; }

.text-center { text-align: center; }
.text-green  { color: var(--green); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,109,90,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 28px rgba(0,109,90,0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,109,90,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.btn svg, .btn .btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(3px); }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #ffffff;
  border-bottom: 1px solid rgba(0,109,90,0.12);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header .container {
  height: 100%;
}

/* WordPress admin bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,109,90,0.12);
  border-bottom-color: rgba(0,109,90,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* WordPress custom logo wrapper */
.site-branding .custom-logo-link,
.site-branding .site-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
}

.site-logo-text span {
  color: var(--text-primary);
}

.custom-logo {
  height: 40px;
  width: auto;
  display: block;
  max-width: 160px;
  object-fit: contain;
}

/* Nav Menu */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: var(--green);
  background: var(--green-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.mobile-nav a:hover {
  color: var(--green);
  background: var(--green-subtle);
  border-color: var(--border);
}
.mobile-nav .nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* Dashboard Link - Special Styling */
.primary-nav .nav-dashboard-link,
.primary-nav .menu-item-dashboard > a {
  background: var(--green-subtle);
  color: var(--green);
  font-weight: 600;
}
.primary-nav .nav-dashboard-link:hover,
.primary-nav .menu-item-dashboard > a:hover {
  background: var(--green);
  color: var(--white);
}
.mobile-nav .nav-dashboard-link {
  background: var(--green-subtle);
  color: var(--green);
  font-weight: 600;
  border-color: var(--border);
}
.mobile-nav .nav-dashboard-link:hover {
  background: var(--green);
  color: var(--white);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,137,111,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,109,90,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #001f1a 0%, #003830 50%, #004f41 100%);
}

.hero-grid-lines {
  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-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,180,140,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: dotsFloat 20s linear infinite;
}

@keyframes dotsFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,137,111,0.25), transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,109,90,0.3);
  border: 1px solid rgba(0,180,140,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c896;
  box-shadow: 0 0 0 3px rgba(0,200,150,0.25);
  animation: blink 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #00c896;
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 420px;
  height: 340px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 28px;
  color: var(--white);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: -2s; }
.hero-card:nth-child(3) { animation-delay: -4s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-card-main {
  width: 320px;
  top: 20px;
  left: 50px;
  z-index: 3;
}
.hero-card-back {
  width: 290px;
  top: 60px;
  left: 10px;
  z-index: 1;
  opacity: 0.5;
}
.hero-card-accent {
  width: 200px;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0.7;
}

.card-label { font-size: 0.75rem; opacity: 0.6; margin-bottom: 8px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.card-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.card-sub   { font-size: 0.8rem; opacity: 0.7; }
.card-positive { color: #00e5a8; }
.card-negative { color: #ff6b6b; }

.card-bar-row { display: flex; gap: 4px; margin-top: 16px; }
.card-bar {
  flex: 1;
  height: 36px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.card-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #00c896, rgba(0,200,150,0.3));
  border-radius: 4px;
  animation: barGrow 3s ease-in-out infinite alternate;
}
.card-bar:nth-child(1)::after { height: 60%; animation-delay: 0s; }
.card-bar:nth-child(2)::after { height: 80%; animation-delay: 0.2s; }
.card-bar:nth-child(3)::after { height: 45%; animation-delay: 0.4s; }
.card-bar:nth-child(4)::after { height: 90%; animation-delay: 0.6s; }
.card-bar:nth-child(5)::after { height: 70%; animation-delay: 0.8s; }
.card-bar:nth-child(6)::after { height: 55%; animation-delay: 1.0s; }
.card-bar:nth-child(7)::after { height: 75%; animation-delay: 1.2s; }

@keyframes barGrow {
  from { transform: scaleY(0.7); }
  to   { transform: scaleY(1); }
}

/* ── Section: How It Works ── */
.how-it-works {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--green-subtle);
  filter: blur(80px);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header p { margin-top: 16px; font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-subtle);
  line-height: 1;
  margin-bottom: 20px;
  color: rgba(0,109,90,0.12);
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.4rem;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-primary); }
.step-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── Section: Bots / Features ── */
.bots-section { background: var(--white); }

.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.bot-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.bot-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green);
}

.bot-card-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bot-card-header::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.bot-category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.bot-name,
h3.bot-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
  color: var(--white);
  letter-spacing: normal;
}
.bot-rating { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.bot-rating-stars { color: #f5c842; }

.bot-card-body { padding: 24px 28px; }
.bot-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bot-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.bot-meta-item { display: flex; flex-direction: column; gap: 2px; }
.bot-meta-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.bot-meta-value { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }
.bot-meta-value.positive { color: #00966e; }

.bot-card-footer {
  padding: 16px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-card-footer .btn {
  flex: 1;
  justify-content: center;
}

/* ── Section: Stats / Numbers ── */
.stats-section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.stat-item {}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ── Section: Developers CTA ── */
.developers-section {
  background: var(--off-white);
  position: relative;
}

.dev-card {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dev-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,109,90,0.4);
  filter: blur(60px);
}
.dev-card-content { position: relative; z-index: 1; }
.dev-card-content .eyebrow { color: #00c896; }
.dev-card-content .eyebrow::before { background: #00c896; }
.dev-card-content h2 { color: var(--white); margin-bottom: 20px; }
.dev-card-content p  { color: rgba(255,255,255,0.65); max-width: 480px; }

.dev-card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

/* ── Section: Testimonials ── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-stars { color: #f5c842; font-size: 0.85rem; margin-bottom: 8px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Section: FAQ ── */
.faq-section { background: var(--off-white); }
.faq-container { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.is-open { box-shadow: var(--shadow-md); border-color: var(--green); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-item.is-open .faq-question { color: var(--green); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
}
.faq-item.is-open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Section: Newsletter / CTA ── */
.cta-section {
  background: var(--white);
  text-align: center;
}

.cta-box {
  background: var(--green-deep);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.cta-box::before,
.cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(0,109,90,0.35);
  filter: blur(60px);
}
.cta-box::before { width: 300px; height: 300px; top: -100px; left: -80px; }
.cta-box::after  { width: 400px; height: 400px; bottom: -120px; right: -80px; }

.cta-box h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.cta-box p  { color: rgba(255,255,255,0.65); position: relative; z-index: 1; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  backdrop-filter: blur(10px);
}
.cta-input::placeholder { color: rgba(255,255,255,0.45); }
.cta-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

/* ── Footer ── */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .site-logo-text { color: var(--white); }
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-widget-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 24px; }

/* ── Blog / Archive ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.post-card-thumb {
  aspect-ratio: 16/9;
  background: var(--pearl);
  overflow: hidden;
  position: relative;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.post-card-body { padding: 28px; }
.post-card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.post-card-title { font-size: 1.1rem; margin-bottom: 10px; }
.post-card-title a { color: var(--text-primary); }
.post-card-title a:hover { color: var(--green); }
.post-card-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.post-card-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.post-card-meta-divider { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }

/* ── Single Post ── */
.post-hero {
  background: var(--green-deep);
  padding: 120px 0 72px;
  color: var(--white);
}
.post-hero-meta { margin-bottom: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.post-hero h1 { color: var(--white); max-width: 760px; }

.post-content {
  max-width: 760px;
  margin: 64px auto;
  padding: 0 24px;
}
.post-content p  { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.03rem; }
.post-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.post-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  background: var(--pearl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
}
.post-content code {
  background: var(--pearl);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--green);
  font-family: 'Courier New', monospace;
}
.post-content pre {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 2rem 0;
}
.post-content pre code { background: none; padding: 0; color: inherit; }
.post-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.post-content a { color: var(--green); text-decoration: underline; }

/* ── Page Content ── */
.page-hero {
  background: var(--green-deep);
  padding: 120px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.6); margin-top: 16px; }

.page-content {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 24px;
}
.page-content h2 { margin-bottom: 1rem; margin-top: 2.5rem; }
.page-content p  { margin-bottom: 1.25rem; }

/* ── Sidebar ── */
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.widget { margin-bottom: 32px; }
.widget-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.pagination a:hover     { border-color: var(--green); color: var(--green); }
.pagination .current    { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── Page: 404 ── */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 64px) 24px 64px;
}
.error-404-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 800;
  color: var(--pearl);
  line-height: 1;
  margin-bottom: -16px;
}
.error-404 h2 { margin-bottom: 16px; }
.error-404 p  { margin-bottom: 32px; }

/* ── Search Results ── */
.search-hero { background: var(--green-deep); padding: 80px 0 48px; }
.search-hero h1 { color: var(--white); }
.search-hero span { color: #00c896; }

/* ── Comments ── */
.comments-area { max-width: 760px; margin: 0 auto 64px; padding: 0 24px; }
.comments-title { margin-bottom: 32px; }
.comment-list { padding: 0; }
.comment { margin-bottom: 28px; }
.comment-body {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.comment-author-avatar { border-radius: 50%; width: 38px; height: 38px; }
.comment-author-name { font-weight: 600; font-size: 0.92rem; color: var(--text-primary); }
.comment-date { font-size: 0.8rem; color: var(--text-muted); }
.comment-content p { font-size: 0.92rem; }

.comment-respond {
  margin-top: 48px;
  padding: 36px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.comment-reply-title { margin-bottom: 24px; }
.comment-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 16px;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form .submit { background: var(--green); color: var(--white); padding: 12px 28px; border: none; border-radius: var(--radius-full); font-family: var(--font-body); font-weight: 600; cursor: pointer; transition: all var(--transition); }
.comment-form .submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── Utility: Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  padding: 10px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 9999;
}
.skip-link:focus { left: 16px; }

/* ── Screen Reader ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Bots Page ── */
.bots-page-section {
  background: var(--off-white);
}

.bots-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.bot-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.bot-page-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: var(--green);
}

.bot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.bot-page-card-header {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  padding: 32px 28px 28px;
  color: var(--white);
  text-align: center;
}

.bot-page-card-header .bot-category {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: block;
}

.bot-page-card-header .bot-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--white);
}

.bot-page-card-header .bot-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.bot-page-card-header .bot-stars {
  color: #f5c842;
}

.bot-page-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bot-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bot-win-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.win-rate-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.win-rate-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.bot-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.bot-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.bot-features li:last-child {
  border-bottom: none;
}

.bot-features li svg {
  color: var(--green);
  flex-shrink: 0;
}

.bot-page-card-footer {
  padding: 24px 28px 32px;
  background: var(--pearl);
  text-align: center;
  border-top: 1px solid var(--border);
}

.bot-price-box {
  margin-bottom: 20px;
}

.bot-price-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.bot-price-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.bot-price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.bot-cta-btn {
  width: 100%;
  justify-content: center;
}

/* Trust Section */
.bots-trust-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--green);
}

/* ── Legal Pages (Privacy, Terms) ── */
.legal-page-section {
  background: var(--white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.legal-block ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.legal-block ul li strong {
  color: var(--text);
}

.legal-contact-box {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.legal-contact-box p {
  margin-bottom: 12px;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

.legal-contact-box a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.legal-contact-box a:hover {
  text-decoration: underline;
}

/* ── FAQ Page ── */
.faq-page-section {
  background: var(--off-white);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category:last-of-type {
  margin-bottom: 64px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

.faq-category-title svg {
  color: var(--green);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--green-light);
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--green);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-answer p {
  margin-bottom: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 24px;
}

.faq-answer ul {
  list-style: none;
  margin: 0 0 24px 0;
}

.faq-answer ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.faq-answer ul li strong {
  color: var(--text);
}

/* FAQ CTA Box */
.faq-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
}

.faq-cta-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
}

.faq-cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.faq-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.faq-cta-box .btn {
  background: var(--white);
  color: var(--green-deep);
}

.faq-cta-box .btn:hover {
  background: var(--pearl);
}

/* ── Auth Pages (Login/Register) ── */
.auth-page {
  min-height: 100vh;
  background: var(--off-white);
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.auth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 64px;
  background: var(--white);
  max-width: 600px;
  margin-left: auto;
}

.auth-logo {
  margin-bottom: 40px;
}

.auth-logo a {
  display: inline-block;
  text-decoration: none;
}

.auth-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
}

.auth-header {
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
}

.auth-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.password-toggle:hover {
  color: var(--text);
}

/* Password Strength */
.password-strength {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.strength-fill.weak { width: 25%; background: #ef4444; }
.strength-fill.fair { width: 50%; background: #f59e0b; }
.strength-fill.good { width: 75%; background: #10b981; }
.strength-fill.strong { width: 100%; background: var(--green); }

.strength-text {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 50px;
}

.strength-text.weak { color: #ef4444; }
.strength-text.fair { color: #f59e0b; }
.strength-text.good { color: #10b981; }
.strength-text.strong { color: var(--green); }

/* Password Requirements */
.password-requirements {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.password-requirements li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.password-requirements li .req-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.password-requirements li.valid {
  color: var(--green);
}

.password-requirements li.valid .req-icon {
  background: var(--green);
  border-color: var(--green);
}

.password-requirements li.valid .req-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.password-match-message {
  font-size: 0.82rem;
  margin: 4px 0 0 0;
}

.password-match-message.match {
  color: var(--green);
}

.password-match-message.no-match {
  color: #ef4444;
}

/* Radio & Checkbox Options */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.radio-option input,
.checkbox-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.radio-option input:checked + .radio-custom {
  border-color: var(--green);
}

.radio-option input:checked + .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkbox-option input:checked + .checkbox-custom {
  background: var(--green);
  border-color: var(--green);
}

.checkbox-option input:checked + .checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.radio-label,
.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-label a {
  color: var(--green);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Message */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  display: none;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.form-message.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

/* Submit Button */
.btn-block {
  width: 100%;
  justify-content: center;
}

#register-btn,
#login-btn {
  margin-top: 8px;
}

.btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Auth Footer */
.auth-footer {
  margin-top: 32px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.auth-footer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.auth-footer a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Auth Visual */
.auth-visual {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.auth-visual-content {
  position: relative;
  max-width: 480px;
  color: var(--white);
}

.auth-visual-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.auth-visual-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.auth-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.auth-features svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Auth Stats */
.auth-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.auth-stat .stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ── Onboarding Pages ── */
.onboarding-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--off-white);
}

.onboarding-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
}

/* Progress Steps */
.onboarding-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

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

.progress-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.progress-step .step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 80px;
}

.progress-step.active .step-number {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.progress-step.active .step-label {
  color: var(--green);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.progress-step.completed .step-number::after {
  content: '✓';
  font-size: 0.9rem;
}

.progress-step.completed .step-label {
  color: var(--text-secondary);
}

.progress-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 16px;
  margin-bottom: 24px;
}

.progress-line.completed {
  background: var(--green);
}

/* Onboarding Content */
.onboarding-content {
  text-align: center;
}

.onboarding-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--green);
}

.onboarding-icon.success {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
}

.onboarding-content h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
}

.onboarding-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

/* Onboarding Steps */
.onboarding-steps {
  text-align: left;
  margin-bottom: 32px;
}

.onboard-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.onboard-step:last-child {
  border-bottom: none;
}

.onboard-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.onboard-step-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px 0;
}

.onboard-step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Onboarding Actions */
.onboarding-actions {
  margin-bottom: 24px;
}

.onboarding-actions .btn {
  width: 100%;
  justify-content: center;
}

.onboarding-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.onboarding-divider::before,
.onboarding-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.onboarding-divider span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Connect Form */
.connect-form {
  text-align: left;
  margin-bottom: 24px;
}

.token-help {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 16px;
  overflow: hidden;
}

.token-help-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.token-help-header:hover {
  color: var(--text);
}

.token-help-header .chevron {
  margin-left: auto;
  transition: transform var(--transition);
}

.token-help.open .token-help-header .chevron {
  transform: rotate(180deg);
}

.token-help-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.token-help.open .token-help-content {
  max-height: 300px;
}

.token-help-content ol {
  padding: 0 16px 16px 32px;
  margin: 0;
}

.token-help-content li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.token-help-content .btn {
  margin: 0 16px 16px;
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--green-subtle);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: left;
}

.security-note svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Onboarding Help */
.onboarding-help {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.onboarding-help p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.onboarding-help a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.onboarding-help a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .dev-card { grid-template-columns: 1fr; }
  .dev-card-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  /* Tablet header - hide some nav actions */
  .nav-actions .btn:not(:last-child) {
    display: none;
  }

  /* Bots page grid */
  .bots-page-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .bots-trust-section {
    gap: 32px;
  }

  /* Auth pages tablet */
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px;
  }

  /* Onboarding tablet */
  .onboarding-card {
    padding: 40px;
  }

  .progress-step .step-label {
    display: none;
  }

  .progress-line {
    width: 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .primary-nav, .nav-actions { display: none; }
  .menu-toggle { display: flex; }

  /* Keep logo on the left on mobile */
  .header-inner {
    justify-content: space-between;
  }
  .site-branding {
    margin-right: auto;
  }

  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .dev-card { padding: 40px 32px; border-radius: var(--radius-lg); }
  .cta-form { flex-direction: column; }
  .cta-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .hero-stats { gap: 24px; }

  /* FAQ responsive */
  .faq-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .faq-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-answer p,
  .faq-answer ul {
    padding: 0 20px;
  }

  /* Auth pages mobile */
  .auth-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .password-requirements {
    grid-template-columns: 1fr;
  }

  .auth-header h1 {
    font-size: 1.5rem;
  }

  /* Onboarding mobile */
  .onboarding-card {
    padding: 32px 24px;
  }

  .onboarding-content h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .bots-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }

  /* FAQ mobile */
  .faq-category-title {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .faq-answer p,
  .faq-answer ul {
    padding: 0 16px;
    font-size: 0.88rem;
  }
}

/* ============================================================
   SINGLE BOT PAGE STYLES
   ============================================================ */

/* Bot Hero Section */
.single-bot-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.single-bot-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 137, 111, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.bot-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.bot-hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.bot-hero-category {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.single-bot-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.single-bot-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
}

.bot-hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.bot-hero-rating .stars {
  color: #f5c842;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.bot-hero-rating .rating-value {
  font-weight: 700;
  color: var(--white);
}

.bot-hero-rating .rating-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Video Section */
.bot-video-section {
  background: var(--off-white);
  padding: 60px 0;
  position: relative;
  z-index: 3;
}

.bot-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--green-deep);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Bot Stats Section */
.bot-stats-section {
  background: var(--off-white);
  padding: 0 0 80px;
}

.bot-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.bot-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.bot-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green);
}

.bot-stat-icon {
  width: 48px;
  height: 48px;
  background: var(--green-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}

.bot-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.bot-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bot Details Section */
.bot-details-section {
  background: var(--white);
}

.bot-details-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.bot-details-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.bot-about h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.bot-about p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bot-features-list h3,
.bot-how-it-works h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
}

.bot-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bot-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.bot-features-list li:hover {
  border-color: var(--green);
  background: var(--white);
}

.bot-features-list li svg {
  color: var(--green);
  flex-shrink: 0;
}

/* How It Works Steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-step {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.how-step .step-num {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Purchase Card */
.bot-purchase-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  box-shadow: var(--shadow-lg);
}

.purchase-card-header {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
}

.purchase-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.purchase-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.purchase-price .price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.purchase-price .price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.purchase-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.purchase-card-body {
  padding: 28px;
}

.purchase-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.purchase-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.purchase-includes li svg {
  color: var(--green);
  flex-shrink: 0;
}

.purchase-card-body .btn-block {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.purchase-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.purchase-trust .trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.purchase-trust .trust-badge svg {
  color: var(--green);
}

/* Responsive Single Bot Page */
@media (max-width: 1024px) {
  .bot-details-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bot-purchase-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .bot-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .single-bot-hero {
    padding: 120px 0 60px;
  }

  .single-bot-hero h1 {
    font-size: 2rem;
  }

  .bot-video-section {
    padding: 40px 0;
  }

  .video-container {
    border-radius: var(--radius-lg);
  }

  .bot-stats-section {
    padding-bottom: 60px;
  }

  .bot-stat-card {
    padding: 20px 16px;
  }

  .bot-stat-value {
    font-size: 1.5rem;
  }

  .bot-details-content {
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .bot-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bot-stat-card {
    padding: 16px 12px;
  }

  .bot-stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .bot-stat-value {
    font-size: 1.3rem;
  }

  .bot-stat-label {
    font-size: 0.75rem;
  }

  .purchase-price .price-value {
    font-size: 2.5rem;
  }

  .how-step {
    flex-direction: column;
    gap: 12px;
  }

  .bot-hero-rating {
    flex-wrap: wrap;
    gap: 8px;
  }
}
