/* ===== ScoutClaw Landing Page ===== */
/* Design: Dark theme, orange accent, Chakra Petch/Outfit/JetBrains Mono */

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

:root {
  --bg: #0a0a0a;
  --fg: #f2f2f2;
  --card: #121212;
  --primary: #e85d1c;
  --primary-light: rgba(232, 93, 28, 0.1);
  --primary-border: rgba(232, 93, 28, 0.3);
  --secondary: #1f1f1f;
  --muted: #8c8c8c;
  --border: #262626;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Chakra Petch', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 768px; }

/* --- Utility --- */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-right { text-align: right; }
.fw-600 { font-weight: 600; }
.mono-sm { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--muted); }

/* --- Responsive Visibility --- */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (max-width: 480px) {
  .hide-sm { display: none !important; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #d14f14; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-border);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* --- Glow Effects --- */
.glow-orange { box-shadow: 0 0 30px rgba(232, 93, 28, 0.3), 0 0 60px rgba(232, 93, 28, 0.1); }
.glow-orange-sm { box-shadow: 0 0 15px rgba(232, 93, 28, 0.2); }

/* --- Background Effects --- */
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(38, 38, 38, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(38, 38, 38, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.scanlines { position: relative; }
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  pointer-events: none;
}

/* --- Fade-in Animation --- */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-img { height: 40px; width: auto; }
.logo-text { font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 1.25rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--muted); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.mobile-toggle { display: none; background: none; border: none; color: var(--fg); cursor: pointer; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.mobile-menu.open {
  max-height: 300px;
  padding: 0 1.5rem 1rem;
}
.mobile-menu a { padding: 0.5rem 0; color: var(--muted); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--fg); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: visible;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}
.hero-badge { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-logo-img { height: 80px; width: auto; }
.badge-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.hero h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; overflow-wrap: break-word; word-wrap: break-word; }
.hero-sub { color: var(--muted); font-size: 1.125rem; line-height: 1.7; max-width: 560px; margin-bottom: 2rem; overflow-wrap: break-word; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
}

/* ===== MOCK SPREADSHEET ===== */
.mock-spreadsheet {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spreadsheet-bar {
  background: rgba(31, 31, 31, 0.5);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.traffic-lights { display: flex; gap: 0.375rem; }
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.dot-red { background: rgba(239, 68, 68, 0.6); }
.dot-yellow { background: rgba(234, 179, 8, 0.6); }
.dot-green { background: rgba(34, 197, 94, 0.6); }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; }
thead tr { border-bottom: 1px solid var(--border); background: rgba(31, 31, 31, 0.3); }
th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.75rem;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid rgba(38, 38, 38, 0.5); transition: background 0.15s; }
tbody tr:hover { background: rgba(31, 31, 31, 0.2); }
td { padding: 0.625rem 0.75rem; font-size: 0.75rem; white-space: nowrap; }

.report-table-wrap { max-width: 900px; margin: 0 auto; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(31, 31, 31, 0.2);
  padding: 2.5rem 0;
}
.social-tagline { text-align: center; color: var(--muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.metric { text-align: center; }
.metric-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}
.metric-label { color: var(--muted); font-size: 0.875rem; margin-top: 0.25rem; }

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

/* ===== TESTIMONIAL MARQUEE ===== */
.testimonials {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}
.testimonials .fade-in-section {
  width: 100%;
  overflow: hidden;
}
.testimonials-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-right: 1.5rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover {
  border-color: var(--primary-border);
}
.testimonial-stars {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testimonials { padding: 2rem 0; }
  .testimonial-card { width: 280px; padding: 1.25rem; margin-right: 1rem; }
  .marquee { animation-duration: 30s; }
}
@media (max-width: 480px) {
  .testimonial-card { width: 260px; }
}

/* ===== HOW IT WORKS ===== */
.section-how { padding: 5rem 0 7rem; }
.section-how h2, .section-telegram h2, .section-report h2, .section-pricing h2, .section-faq h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.section-sub { color: var(--muted); text-align: center; margin-bottom: 4rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step-line {
  display: none;
  position: absolute;
  top: 2rem;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-border), transparent);
}
.step { text-align: center; }
.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: box-shadow 0.3s;
}
.step-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 0.6rem; }
.step:hover .step-icon { box-shadow: 0 0 15px rgba(232, 93, 28, 0.2); }
.step-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--primary); margin-bottom: 0.5rem; }
.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.step p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

@media (min-width: 769px) {
  .step-line { display: block; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===== STEP ICON IMAGES (brand logos) ===== */
.section-telegram .step-icon { width: 5rem; height: 5rem; border-radius: 50%; background: none; border: none; overflow: hidden; }
.section-telegram .step-icon img { object-fit: cover; border-radius: 50%; }

/* ===== SAMPLE REPORT ===== */
.section-report { padding: 5rem 0 7rem; background: rgba(31, 31, 31, 0.1); }
.section-report .section-sub { margin-bottom: 3rem; }

/* ===== PRICING ===== */
.section-pricing { padding: 5rem 0 7rem; }

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.billing-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.billing-label.active { color: var(--fg); }
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.toggle-switch.active {
  background: var(--primary);
  border-color: var(--primary);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}
.save-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

/* Yearly total line */
.yearly-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--primary-border); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(232, 93, 28, 0.15), 0 0 60px rgba(232, 93, 28, 0.05);
  transform: scale(1.02);
}
.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.price { margin-bottom: 1.5rem; }
.price-amount { font-family: 'Chakra Petch', sans-serif; font-size: 2.5rem; font-weight: 700; }
.price-period { color: var(--muted); font-size: 0.875rem; }
.features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.features .check {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.features .check-na {
  width: 1rem;
  height: 1rem;
  color: #333;
  flex-shrink: 0;
}
.features li.feature-na {
  color: #444;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { transform: none; order: -1; }
}

/* ===== FAQ ===== */
.section-faq { padding: 5rem 0 7rem; background: rgba(31, 31, 31, 0.1); }
.section-faq .section-sub { margin-bottom: 3rem; }

.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.accordion-item.open { border-color: var(--primary-border); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--fg); }
.accordion-chevron {
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.2s;
  margin-left: 1rem;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.25rem;
}
.accordion-item.open .accordion-content {
  max-height: 600px;
  padding: 0 1.25rem 1rem;
}
.accordion-content p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-img { height: 48px; width: auto; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

@media (min-width: 769px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

/* ===== LEGAL PAGES (Privacy, Terms) ===== */
.legal-page {
  padding: 8rem 0 5rem;
}
.legal-page h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.legal-body h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--fg);
}
.legal-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--fg);
}
.legal-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-body ul li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: #d14f14; }
.legal-body strong { color: var(--fg); }

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 8rem 0 5rem;
  text-align: center;
}
.contact-page h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.contact-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.contact-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  overflow: hidden;
  margin: 0 auto 1.5rem;
}
.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-card h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.contact-desc {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.contact-dm-btn {
  margin-bottom: 1rem;
}
.contact-note {
  font-size: 0.8125rem;
  color: var(--muted);
}
.contact-other {
  text-align: left;
}
.contact-other h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-method {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--primary-border); }
.contact-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-method h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-method p {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.contact-method a {
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
}
.contact-method a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .legal-page, .contact-page { padding: 6rem 0 3rem; }
  .legal-page h1, .contact-page h1 { font-size: 1.75rem; }
  .legal-body h2 { font-size: 1.1875rem; margin-top: 2rem; }
  .legal-body p, .legal-body ul li { font-size: 0.875rem; }
  .contact-card { padding: 2rem 1.25rem; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-desc { font-size: 0.875rem; }
}
@media (max-width: 480px) {
  .legal-page, .contact-page { padding: 5.5rem 0 2.5rem; }
  .legal-page h1, .contact-page h1 { font-size: 1.5rem; }
  .contact-card { padding: 1.5rem 1rem; }
}

/* ===== SUCCESS OVERLAY ===== */
.success-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: #0a0a0a;
  color: #fff;
  overflow: auto;
}
.success-overlay-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.success-overlay-content {
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.success-check { font-size: 64px; margin-bottom: 16px; }
.success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.success-desc {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin: 0 0 32px;
  line-height: 1.6;
}
.success-bot-btn {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  max-width: 100%;
  box-sizing: border-box;
}
.success-bot-btn:hover { transform: scale(1.03); }
.success-telegram-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 24px;
}
.success-telegram-note a { color: #f97316; text-decoration: underline; }
.success-back-btn {
  margin-top: 32px;
  background: none;
  border: 1px solid #333;
  color: #666;
  padding: 8px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */

/* --- Tablets & small laptops (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid { gap: 2rem; padding: 3rem 1.5rem; }
  .section-how, .section-telegram, .section-report, .section-pricing, .section-faq { padding: 3.5rem 0 4.5rem; }
  .section-how h2, .section-telegram h2, .section-report h2, .section-pricing h2, .section-faq h2 { font-size: 1.875rem; }
  .section-sub { margin-bottom: 2.5rem; }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }

  /* Hero */
  .hero { min-height: auto; padding-top: 5rem; padding-bottom: 2rem; }
  .hero-grid { padding: 2rem 1rem; gap: 2rem; }
  .hero-badge { margin-bottom: 1rem; }
  .hero-logo-img { height: 56px; }
  .nav-logo-img { height: 32px; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero-sub { font-size: 0.9375rem; margin-bottom: 1.5rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Mock spreadsheet in hero */
  .hero-table-wrap { margin: 0 -1rem; }
  .mock-spreadsheet { border-radius: 0.5rem; }
  table { font-size: 0.6875rem; table-layout: auto; }
  th, td { padding: 0.5rem 0.5rem; }
  td:first-child { white-space: normal; min-width: 80px; }

  /* Social proof */
  .social-proof { padding: 1.5rem 0; }
  .social-tagline { font-size: 0.8125rem; margin-bottom: 1rem; }
  .metric-value { font-size: 1.375rem; }
  .metric-label { font-size: 0.75rem; }

  /* How it works */
  .section-how, .section-telegram { padding: 3rem 0 4rem; }
  .section-how h2, .section-telegram h2, .section-report h2, .section-pricing h2, .section-faq h2 { font-size: 1.625rem; }
  .section-sub { font-size: 0.875rem; margin-bottom: 2rem; }
  .step h3 { font-size: 1.125rem; }

  /* Sample report */
  .section-report { padding: 3rem 0 4rem; }
  .report-table-wrap { margin: 0 -1rem; }

  /* Pricing */
  .section-pricing { padding: 3rem 0 4rem; }
  .billing-toggle { gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .pricing-card { padding: 1.25rem; }
  .price-amount { font-size: 2rem; }
  .features li { font-size: 0.8125rem; }

  /* FAQ */
  .section-faq { padding: 3rem 0 4rem; }
  .accordion-trigger { font-size: 0.875rem; padding: 0.875rem 1rem; }
  .accordion-content p { font-size: 0.8125rem; }
  .accordion-item.open .accordion-content { padding: 0 1rem 0.875rem; }

  /* Footer */
  .site-footer { padding: 2rem 0; }
  .footer-inner { gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; font-size: 0.8125rem; }
  .footer-logo-img { height: 36px; }

  /* Success overlay */
  .success-overlay-inner { padding: 16px; }
  .success-check { font-size: 48px; margin-bottom: 12px; }
  .success-title { font-size: 1.5rem; }
  .success-desc { font-size: 0.95rem; margin-bottom: 24px; }
  .success-bot-btn { padding: 14px 24px; font-size: 1rem; width: 100%; text-align: center; }
}

/* --- Small phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.625rem; }
  .hero-sub { font-size: 0.875rem; }
  .hero-logo-img { height: 48px; }
  .badge-pill { font-size: 0.625rem; padding: 0.2rem 0.5rem; }

  .metrics-grid { gap: 1rem; }
  .metric-value { font-size: 1.25rem; }

  .section-how h2, .section-telegram h2, .section-report h2, .section-pricing h2, .section-faq h2 { font-size: 1.375rem; }

  table { font-size: 0.75rem; }
  th, td { padding: 0.375rem 0.4rem; }
  td:first-child { min-width: 70px; }

  .pricing-card h3 { font-size: 1.125rem; }
  .price-amount { font-size: 1.75rem; }

  .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }

  /* Success overlay */
  .success-check { font-size: 40px; }
  .success-title { font-size: 1.375rem; }
  .success-desc { font-size: 0.875rem; }
  .success-bot-btn { padding: 12px 20px; font-size: 0.9375rem; }
}

/* --- Touch-friendly targets --- */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .accordion-trigger { min-height: 48px; }
  .mobile-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .nav-links a { padding: 0.5rem 0; }
  .mobile-menu a { padding: 0.75rem 0; font-size: 1rem; }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
  }
  .sticky-cta.visible {
    transform: translateY(0);
  }
  /* Add bottom padding to body so footer isn't hidden behind sticky bar */
  body { padding-bottom: 72px; }
}

/* ===== PRODUCT PAGE ===== */
.product-hero {
  padding: 8rem 0 3rem;
  text-align: center;
}
.product-hero h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--primary); }

.answer-block {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.answer-block a { color: var(--primary); }

.product-section {
  padding: 4rem 0;
}
.product-section-alt {
  background: var(--card);
}
.product-section h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

/* Semantic tables */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  table-layout: auto;
}
.product-table thead th {
  background: var(--secondary);
  color: var(--fg);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.product-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  vertical-align: top;
  line-height: 1.5;
}
.product-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.product-table tbody td:first-child {
  white-space: nowrap;
}
.product-table a {
  color: var(--primary);
}

/* Comparison table: highlight ScoutClaw column */
.comparison-table .highlight-col {
  background: rgba(232, 93, 28, 0.06);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}
.comparison-table thead .highlight-col {
  background: rgba(232, 93, 28, 0.12);
  color: var(--primary);
  border-top: 2px solid var(--primary);
}
.comparison-table tbody tr:last-child .highlight-col {
  border-bottom: 2px solid var(--primary);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: var(--primary-border);
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Audience grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.audience-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.audience-card:hover {
  border-color: var(--primary-border);
}
.audience-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.audience-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product page responsive */
@media (max-width: 768px) {
  .product-hero { padding: 6rem 0 2rem; }
  .product-hero h1 { font-size: 1.75rem; }
  .answer-block { font-size: 0.9375rem; }
  .product-section { padding: 3rem 0; }
  .product-section h2 { font-size: 1.625rem; }
  .product-table { font-size: 0.8125rem; min-width: 600px; }
  .product-table thead th { padding: 0.625rem 0.75rem; font-size: 0.75rem; }
  .product-table tbody td { padding: 0.5rem 0.75rem; }
  .feature-grid, .audience-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-hero h1 { font-size: 1.5rem; }
  .product-section h2 { font-size: 1.375rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-card { padding: 1rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  .fade-in-section { opacity: 1; transform: none; transition: none; }
  .mobile-menu { transition: none; }
  .accordion-content { transition: none; }
  .sticky-cta { transition: none; }
  html { scroll-behavior: auto; }
}
