/* ============================================
   ScamSense Landing Page — styles.css
   Clean, modern, cybersecurity-themed design
   Mobile-first responsive
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-bg-dark: #0a0e1a;
  --color-bg-dark-2: #111827;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-surface: #1e293b;
  --color-surface-2: #334155;

  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;

  --color-accent: #06b6d4;
  --color-accent-light: #22d3ee;

  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;

  --color-text-dark: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  --color-text-light: #e2e8f0;
  --color-text-light-muted: #94a3b8;

  --color-border: #e2e8f0;
  --color-border-dark: #1e293b;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max: 1200px;
  --container-sm: 800px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: var(--container-sm);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

.btn-nav:hover {
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes radarPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.nav-logo img {
  border-radius: var(--radius-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  background: var(--gradient-dark);
  padding: 8rem 0 5rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-primary-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-success);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Phone Mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
}

.phone-frame {
  background: var(--color-surface);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screen {
  background: var(--color-bg-dark);
  border-radius: 26px;
  padding: 1.5rem 1rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.mock-header img {
  border-radius: 6px;
}

.mock-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  animation: fadeInUp 0.6s ease both;
}

.mock-card:nth-child(2) { animation-delay: 0.2s; }
.mock-card:nth-child(3) { animation-delay: 0.4s; }

.mock-card-danger {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.mock-card-safe {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.mock-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-icon.danger {
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-danger);
}

.mock-icon.safe {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-success);
}

.mock-card strong {
  color: #fff;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.15rem;
}

.mock-card p {
  color: var(--color-text-light-muted);
  font-size: 0.75rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-light-muted);
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.float-badge-1 {
  top: 15%;
  right: -20px;
  animation: float 4s ease-in-out infinite;
  color: var(--color-success);
}

.float-badge-2 {
  bottom: 20%;
  left: -30px;
  animation: float 4s ease-in-out infinite 1s;
  color: var(--color-accent-light);
}

/* Hero background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: pulse 6s ease-in-out infinite;
}

/* ---------- SECTIONS SHARED ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--color-text-light);
}

.section-light {
  background: var(--color-bg-light);
}

.section-accent {
  background: var(--color-bg-dark-2);
  color: var(--color-text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: inherit;
  margin-bottom: 1rem;
}

.section-dark .section-title,
.section-accent .section-title {
  color: #fff;
}

.section-light .section-title {
  color: var(--color-text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
  color: var(--color-text-light-muted);
}

/* ---------- ABOUT / WHAT IS SCAMSENSE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-card {
  background: var(--color-bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.about-card h3 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
}

.step-icon {
  color: var(--color-primary-light);
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.step-connector {
  color: var(--color-text-light-muted);
  padding: 0 0.5rem;
  flex-shrink: 0;
}

/* ---------- FREE FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.feature-check {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ---------- PREMIUM / PRICING ---------- */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-base);
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card-premium {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--color-surface) 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-name {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.price-period {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
}

.plan-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.plan-features li svg {
  flex-shrink: 0;
  color: var(--color-success);
}

.plan-features li.disabled {
  color: var(--color-text-light-muted);
  opacity: 0.5;
}

.plan-features li.disabled svg {
  color: var(--color-text-light-muted);
}

/* ---------- SCAM TREND RADAR ---------- */
.radar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.radar-text {
  font-size: 1.1rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.radar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.radar-list li svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.radar-visual {
  display: flex;
  justify-content: center;
}

.radar-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

.radar-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  animation: radarPulse 3s ease-out infinite;
}

.radar-alerts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radar-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.alert-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-dot.hot {
  background: var(--color-danger);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.alert-dot.warm {
  background: var(--color-warning);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.alert-dot.cool {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.radar-alert strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.radar-alert small {
  color: var(--color-text-light-muted);
  font-size: 0.78rem;
}

/* ---------- WHY SCAMSENSE ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- CTA SECTION ---------- */
.section-cta {
  background: var(--gradient-dark);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}

.cta-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
}

.faq-item[open] {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light-muted);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  border-radius: 6px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light-muted);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--color-primary-light);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablet Portrait (max 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  /* Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right var(--transition-base);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
  }

  .phone-mockup {
    width: 260px;
  }

  .float-badge-1 {
    right: -10px;
  }

  .float-badge-2 {
    left: -10px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Premium */
  .premium-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Radar */
  .radar-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Section titles */
  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 0;
  }

  body {
    font-size: 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 230px;
  }

  .phone-screen {
    min-height: 360px;
    padding: 1.25rem 0.85rem;
  }
}


/* ==========================================================================
   INNER PAGES — Shared Styles
   ========================================================================== */

/* Inner Navbar (always dark, no transparent state) */
.navbar-inner {
  background: rgba(10, 14, 26, 0.98) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* Active nav link */
.nav-menu a.active {
  color: var(--primary);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--bg-primary);
  text-align: center;
  overflow: hidden;
}

.page-hero-sm {
  padding: 9rem 0 3rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Container small (for blog articles) */
.container-sm {
  max-width: 800px;
  margin: 0 auto;
}


/* ==========================================================================
   HOW IT WORKS PAGE
   ========================================================================== */

/* Step Detail Grid */
.step-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.step-detail-reverse {
  direction: rtl;
}

.step-detail-reverse > * {
  direction: ltr;
}

.step-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-number-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.step-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.step-detail-content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.step-detail-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.step-detail-list li svg {
  flex-shrink: 0;
  color: var(--success);
}

/* Step Visual Cards */
.step-detail-visual {
  display: flex;
  justify-content: center;
}

.step-visual-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.step-visual-dark {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Mock UI Elements */
.visual-input-mock {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
}

.input-mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.input-mock-body {
  padding: 1rem;
}

.input-mock-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.input-mock-text {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.input-mock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.input-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* Analysis Mock */
.analysis-mock {
  padding: 1.5rem;
}

.analysis-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.analysis-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.analysis-progress {
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.analysis-bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: loadBar 2s ease-in-out infinite;
}

@keyframes loadBar {
  0% { width: 20%; }
  50% { width: 80%; }
  100% { width: 20%; }
}

.analysis-checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.analysis-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.analysis-check svg {
  color: var(--success);
  flex-shrink: 0;
}

.check-spinner-sm {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

/* Verdict Mock */
.verdict-mock {
  padding: 1.5rem;
  text-align: center;
}

.verdict-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--danger);
}

.verdict-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 0.5rem;
}

.verdict-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.verdict-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.verdict-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
}

.danger-icon {
  display: flex;
  align-items: center;
}

.danger-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Scan Types Grid */
.scan-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.scan-type-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.scan-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.scan-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.scan-type-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.scan-type-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ==========================================================================
   FEATURES PAGE — Dark Section Variants
   ========================================================================== */

.features-grid-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item-dark {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-item-dark:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.feature-item-dark .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.feature-item-dark h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.feature-item-dark p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Light Plan Cards (for features page) */
.plan-card-light {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.plan-card-premium-light {
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.12);
}

.plan-card-premium-light .premium-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.plan-header-light {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.plan-name-light {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.price-amount-light {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}

.price-amount-light .price-period {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.plan-features-light {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.plan-features-light li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: #475569;
  font-size: 0.95rem;
}

.plan-features-light li svg {
  flex-shrink: 0;
  color: var(--success);
}

.plan-features-light li.disabled {
  opacity: 0.4;
}

.plan-features-light li.disabled svg {
  color: #94a3b8;
}


/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

.faq-category {
  margin-bottom: 3rem;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}


/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Blog Card Grid (used on homepage & blog listing related) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.blog-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.blog-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-date {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* Blog Listing Page */
.blog-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-listing-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.blog-listing-featured {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
  border-color: rgba(99, 102, 241, 0.25);
}

.blog-listing-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.blog-listing-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.blog-listing-featured .blog-listing-icon {
  width: 72px;
  height: 72px;
}

.blog-listing-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  margin-bottom: 0.5rem;
  width: fit-content;
}

.blog-listing-card h2,
.blog-listing-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-listing-card h2 {
  font-size: 1.5rem;
}

.blog-listing-card h3 {
  font-size: 1.2rem;
}

.blog-listing-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.blog-listing-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.blog-listing-read {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Blog Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(99, 102, 241, 0.4);
  color: var(--primary);
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Blog Post Content (article pages) */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.blog-back-link:hover {
  color: var(--primary);
}

.blog-post-date {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.blog-post-tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
}

/* Blog Article Content */
.blog-content {
  color: #334155;
}

.blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2.5rem 0 1rem;
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.35rem;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.25rem;
}

.blog-intro {
  font-size: 1.15rem !important;
  color: #334155 !important;
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem !important;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0.5rem;
}

/* Blog Tip Cards (Phishing blog) */
.blog-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.blog-tip-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-tip-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.blog-tip-card h3 {
  margin-bottom: 0.35rem;
}

.blog-tip-card p {
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
}

/* Blog CTA Box */
.blog-cta-box {
  margin: 3rem 0 1rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  text-align: center;
}

.blog-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.blog-cta-box p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.blog-cta-box .btn {
  display: inline-flex;
}

/* Blog Scam Sections (Common Scams blog) */
.blog-scam-section {
  margin: 2.5rem 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.blog-scam-section:last-of-type {
  border-bottom: none;
}

.blog-scam-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-scam-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-scam-header h2 {
  margin: 0 !important;
}

.blog-example-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--danger);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1rem 0;
}

.blog-example-label {
  font-size: 0.8rem !important;
  font-weight: 600;
  color: #94a3b8 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem !important;
}

.blog-example-text {
  font-style: italic;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

/* Blog Process Grid (Screenshot blog) */
.blog-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.blog-process-step {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.blog-process-step h3 {
  margin-bottom: 0.5rem;
}

.blog-process-step p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

/* Blog Highlight Grid */
.blog-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.blog-highlight-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-highlight-card h3 {
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.blog-highlight-card p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

.blog-list {
  margin: 1rem 0 2rem 0;
  padding-left: 1.5rem;
}

.blog-list li {
  margin-bottom: 0.75rem;
}


/* ==========================================================================
   INNER PAGES — Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .step-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-detail-reverse {
    direction: ltr;
  }

  .scan-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-listing-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .blog-listing-featured {
    grid-template-columns: 1fr;
  }

  .features-grid-dark {
    grid-template-columns: 1fr;
  }

  .blog-process-grid {
    grid-template-columns: 1fr;
  }

  .blog-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero-sm {
    padding: 7.5rem 0 2.5rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1.05rem;
  }

  .step-number-lg {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .step-detail-content h2 {
    font-size: 1.5rem;
  }

  .scan-types-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 1.5rem;
  }

  .blog-listing-card {
    padding: 1.5rem;
  }

  .blog-listing-card h2 {
    font-size: 1.25rem;
  }

  .blog-content h2 {
    font-size: 1.35rem;
  }

  .blog-post-meta {
    gap: 0.75rem;
  }

  .blog-tip-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-cta-box {
    padding: 2rem 1.5rem;
  }

  .blog-scam-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.7rem;
  }

  .step-detail-content h2 {
    font-size: 1.3rem;
  }

  .blog-content h2 {
    font-size: 1.2rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }

  .blog-intro {
    font-size: 1rem !important;
  }

  .blog-process-grid {
    grid-template-columns: 1fr;
  }

  .blog-highlight-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Legal Pages (Privacy Policy, Terms of Service)
   ============================================ */

.legal-content {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-surface-2);
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.legal-document h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
}

.legal-document h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-document h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-document p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.legal-document ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-document li {
  margin-bottom: 0.6rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-document a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-document a:hover {
  color: var(--color-accent);
}

.legal-highlight {
  background: rgba(99, 102, 241, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-highlight h3 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  padding: 0.3rem 0;
}

.legal-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gradient-primary);
  border-radius: 16px;
  text-align: center;
}

.legal-cta p {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-cta .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.legal-cta .btn-primary:hover {
  background: var(--color-bg-light);
}

@media (max-width: 768px) {
  .legal-document h2 {
    font-size: 1.3rem;
  }

  .legal-document h3 {
    font-size: 1.05rem;
  }

  .legal-cta {
    padding: 1.5rem;
  }
}
