/* Insofthub Global Premium Stylesheet - Mobile-First & Glowing Glassmorphic Accentuation */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: #F8FAFC; /* Slate White */
  --bg-soft: #F1F5F9; /* Soft Slate */
  --card-bg: #FFFFFF;
  --black: #0F172A; /* Deep Slate Black */
  --text-main: #1E293B; /* Slate Dark */
  --text-muted: #64748B; /* Slate Muted */
  --gold: #4F46E5; /* Royal Indigo Accent */
  --gold-light: #8B5CF6; /* Violet Accent */
  --gold-soft: #EEF2FF; /* Indigo Soft Wash */
  --border: #E2E8F0; /* Slate Border */
  --shadow: rgba(79, 70, 229, 0.04);
  --shadow-hover: rgba(79, 70, 229, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Inter', sans-serif;
  --container-width: 1200px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, rgba(248, 250, 252, 0) 45%),
    radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.05) 0%, rgba(248, 250, 252, 0) 50%);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0; /* Full bleed layout under navbar, offset managed per section */
}

/* Offset content for fixed navbar on standard inner pages */
.navbar + .section {
  padding-top: 110px;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Typography & Global Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0; /* Reduced from 100px for tight layouts */
}

.section-alt {
  padding: 60px 0;
  background-color: rgba(255, 253, 248, 0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.text-center { text-align: center; }
.text-gold { 
  color: var(--gold); 
  text-shadow: 0 2px 10px rgba(79, 70, 229, 0.15);
}
.text-muted { color: var(--text-muted); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--black);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.1);
}

.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--black);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.05);
}

.btn-gold {
  background-color: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-gold:hover {
  background-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.15);
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

/* Fixed Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.02);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 34px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  font-size: 14px;
  font-weight: 550; /* Slightly bolder for sharp contrast */
  color: var(--black); /* Dark charcoal color to prevent faded look */
}

.nav-item > a:hover {
  color: var(--gold);
}

/* Products Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger::after {
  content: '▼';
  font-size: 8px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-trigger::after {
  transform: rotate(180deg);
  color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
  border-radius: var(--radius);
  width: 260px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-main);
}

.dropdown-item:hover {
  background-color: var(--gold-soft);
  color: var(--gold);
}

.dropdown-item .badge {
  font-size: 8px;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-now {
  background-color: var(--gold-soft);
  color: var(--gold);
}

.badge-soon {
  background-color: #EAEAEA;
  color: #777777;
}

/* Mobile Navbar Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1005;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* Glassmorphic & Glowing Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.card * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.25);
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stat Cards CSS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.02);
  transition: var(--transition);
}

.stat-card:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(79, 70, 229, 0.15);
}

/* Steps Process Design */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.step-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 30px 20px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.02);
  z-index: 2;
}

.step-card:hover {
  background: #FFFFFF;
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.06);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 20px;
  width: 36px;
  height: 36px;
  background-color: var(--gold);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

/* Hero Section Style */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 500; /* Taller aspect ratio to prevent laptop from cropping out at the top */
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: url('../images/hero-workspace.jpg?v=6') no-repeat center top; /* Anchored to top so bottom excess crops out naturally */
  background-size: cover;
  padding: 0;
}

.hero-section > .container {
  height: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    aspect-ratio: auto;
    height: auto;
    padding-top: 85px;
    padding-bottom: 25px;
    background: url('../images/hero-workspace.jpg?v=6') no-repeat center center;
    background-size: cover;
  }
  .hero-section > .container {
    height: auto;
  }
}

/* Backdrop Vector Glow */
.hero-vector-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(79, 70, 229, 0.03) 50%, transparent 80%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-content {
  display: block; /* Restored live HTML text */
  position: relative;
  text-align: left;
  z-index: 2;
  background: transparent; /* Clean transparent overlay directly on top of template */
  padding: 0;
  max-width: 540px;
}

.hero-content .subtitle {
  color: var(--black) !important; /* Forces black text color for clear readability on light backgrounds */
  font-weight: 500;
  line-height: 1.6;
}

.hero-spacer {
  display: block;
}

@media (max-width: 768px) {
  .hero-content {
    background: rgba(248, 250, 252, 0.95); /* Card overlay for mobile screen sizes */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-spacer {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-spacer {
    display: none; /* Hide spacer on mobile grids */
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

/* Floating animation graphics */
.animation-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 360px;
  margin: 0 auto;
}

/* Specific override animation elements removed from the home hero block */

/* Core Cube - Glassmorphic / Glowing Gold Core */
.core-cube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(139, 92, 246, 0.35);
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(79, 70, 229, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: floatCore 6s ease-in-out infinite;
}

.core-logo-inner {
  width: 64px;
  height: 64px;
  background-color: var(--gold-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colorful Orbiting Icons styling */
.orbit-item {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  transition: var(--transition);
}

/* Inject distinct colorful glass shadows for orbits */
.orbit-item[title="Lead Generation"] {
  border: 1.5px solid rgba(79, 70, 229, 0.4);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
}
.orbit-item[title="Structured Excel Ready Data"] {
  border: 1.5px solid rgba(39, 201, 63, 0.4);
  box-shadow: 0 8px 24px rgba(39, 201, 63, 0.2);
}
.orbit-item[title="Secure License Key"] {
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}
.orbit-item[title="Workplace Automation"] {
  border: 1.5px solid rgba(15, 23, 42, 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.orbit-item[title="Structured Databases"] {
  border: 1.5px solid rgba(14, 116, 144, 0.4);
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.2);
}

.orbit-item:hover {
  transform: scale(1.15) !important;
  z-index: 10;
}

.orbit-item svg {
  width: 24px;
  height: 24px;
}

/* Orbit paths dashed lines */
.orbit-path-1 {
  width: 220px;
  height: 220px;
}

.orbit-path-2 {
  width: 310px;
  height: 310px;
}

/* Hero Trust Points Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: absolute;
  bottom: 16px; /* Aligned near the bottom of the taller aspect-ratio container */
  left: 0;
  right: 0;
  padding: 0 40px;
  z-index: 10;
}

@media (max-width: 992px) {
  .hero-trust-grid {
    padding: 0 20px;
    bottom: 10px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero-trust-grid {
    position: static;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 24px;
    padding: 0 20px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.75); /* Frosted translucent glass overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9); /* Less transparent on hover for feedback */
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  background: var(--gold-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.trust-icon-box svg {
  width: 18px;
  height: 18px;
}

.trust-text-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-text-box h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.trust-text-box p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.35;
}

/* Forms layout */
.form-container {
  max-width: 550px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 8px 24px var(--shadow);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F5F5F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.disclaimer-box {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Interactive Listing Mockup on Lead Creator Page */
.mockup-window {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.mockup-header {
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot-red { background-color: #FF5F56; }
.mockup-dot-yellow { background-color: #FFBD2E; }
.mockup-dot-green { background-color: #27C93F; }

.mockup-bar {
  flex-grow: 1;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 24px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.mockup-body {
  padding: 16px;
  background-color: var(--bg-main);
  max-height: 320px;
  overflow-y: auto;
}

.mockup-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-input {
  flex-grow: 1;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-btn {
  background-color: var(--gold);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  animation: slideIn 0.4s ease-out forwards;
  opacity: 0;
}

.mockup-item-left h5 {
  font-size: 13px;
  color: var(--black);
  margin-bottom: 2px;
}

.mockup-item-left p {
  font-size: 11px;
  color: var(--text-muted);
}

.mockup-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background-color: var(--gold-soft);
  padding: 2px 8px;
  border-radius: 12px;
}

/* Pricing Page CSS Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.price-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border-color: var(--gold);
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.1);
}

.price-card.popular::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.1em;
}

.price-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-amount span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-validity {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.price-features {
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-features li {
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* Products Filter dropdown styles */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-tab {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  border-color: var(--gold);
  color: var(--black);
  background-color: var(--gold-soft);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

/* Admin panel styles */
.admin-table-container {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: 0 4px 16px var(--shadow);
  margin-top: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table th {
  background-color: var(--bg-soft);
  font-weight: 600;
  color: var(--black);
}

.status-badge {
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-paid {
  background-color: rgba(39, 201, 63, 0.1);
  color: #27C93F;
}

.status-pending {
  background-color: rgba(79, 70, 229, 0.1);
  color: var(--gold);
}

.status-failed {
  background-color: rgba(255, 95, 86, 0.1);
  color: #FF5F56;
}

/* Footer Section */
.footer {
  background-color: var(--black);
  color: #888888;
  padding: 60px 0 30px;
  border-top: 1px solid #222222;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  line-height: 1.6;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Animations */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes floatCore {
  0%, 100% { transform: translate(-50%, -53%); }
  50% { transform: translate(-50%, -47%); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive & Mobile Optimization Rules */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .card-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stats-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    padding-top: 60px; /* Reduced header offset */
  }
  .navbar {
    height: 60px;
  }
  .section { 
    padding: 40px 0; 
  }
  .section-alt {
    padding: 40px 0;
  }
  .hero-vector-glow {
    top: 10%;
    right: 0;
    width: 100%;
    height: 60%;
    opacity: 0.5;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
  }
  h1 {
    font-size: 30px;
    line-height: 1.25;
  }
  h2 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn {
    width: 100%;
    padding: 12px;
  }
  .hamburger {
    display: flex;
  }
  
  /* Collapsed Mobile Menu Drawer */
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0; /* Cover full height to avoid overlay issues */
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    transform: translateX(100%); /* Slide in from right */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  
  .dropdown-trigger {
    justify-content: center;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .nav-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .nav-cta .btn {
    display: none; /* Hide "Explore Tools" or direct CTA from navbar inside mobile as per instructions */
  }

  .card-grid, .pricing-grid, .stats-grid, .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  /* Retain animations but optimize core float on mobile */
  .core-cube {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    animation: floatCore 4s ease-in-out infinite;
  }
  .core-logo-inner {
    width: 50px;
    height: 50px;
  }
  .orbit-path-1, .orbit-path-2 {
    animation-duration: 20s;
  }
  .orbit-path-1 {
    width: 160px;
    height: 160px;
  }
  .orbit-path-2 {
    width: 230px;
    height: 230px;
  }
  .orbit-item {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .orbit-item svg {
    width: 18px;
    height: 18px;
  }
  .hero-visual {
    min-height: 280px;
  }
  .animation-container {
    max-width: 280px;
    height: 280px;
  }
  
  .mockup-window {
    max-width: 100%;
  }
}

/* ==========================================================================
   Lead Creator Curved Lines Background Animation
   ========================================================================== */

.hero-section.lead-creator-hero {
  background: var(--bg-main) !important; /* Removes background desktop mockup image */
  aspect-ratio: auto !important; /* Reverts aspect ratio since there is no image shape constraints */
  height: auto !important;
  padding-top: 130px !important;
  padding-bottom: 70px !important;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .hero-section.lead-creator-hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
}

.curved-lines-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.curved-line {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  border-width: 2.5px;
  border-style: solid;
  border-color: rgba(79, 70, 229, 0.08); /* Soft indigo-tinted lines matching branding colors */
  opacity: 0;
  animation: line-pulse 5s ease-in-out infinite;
}

/* Staggered left-aligned side lines */
.curved-line.line-left {
  left: 0;
  border-left: none;
  border-top-right-radius: 80%;
  border-bottom-right-radius: 80%;
}

/* Staggered right-aligned side lines */
.curved-line.line-right {
  right: 0;
  border-right: none;
  border-top-left-radius: 80%;
  border-bottom-left-radius: 80%;
}

/* Mobile top horizontal lines */
.curved-line.line-top {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: none;
  border-bottom-left-radius: 80%;
  border-bottom-right-radius: 80%;
  display: none; /* Inactive on desktop viewports */
}

@keyframes line-pulse {
  0% { 
    opacity: 0; 
    transform: scale(1); 
  }
  15% { 
    opacity: 0.9; 
  }
  70% { 
    opacity: 0.4; 
  }
  100% { 
    opacity: 0; 
    transform: scale(0.85); 
  }
}

@media (max-width: 810px) {
  .curved-line.line-left,
  .curved-line.line-right {
    display: none !important; /* Hide vertical side lines on smaller screens */
  }
  
  .curved-line.line-top {
    display: block !important; /* Display horizontal curved lines from top instead */
  }
}
