/* Custom CSS for 29 Edgar Corp Landing Page Redesign */

/* ----------------------------------
   1. Design System & CSS Variables
   ---------------------------------- */
:root {
  /* Colors */
  --bg-dark: #0b0f19;
  --bg-dark-card: rgba(17, 24, 39, 0.7);
  --bg-light: #f8fafc;
  --bg-light-card: #ffffff;
  
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.15);
  
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.15);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --text-dark-primary: #f8fafc;
  --text-dark-secondary: #94a3b8;
  --text-light-primary: #0f172a;
  --text-light-secondary: #475569;
  
  --border-light: #e2e8f0;
  --border-dark: #334155;
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout / Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 50px -10px rgba(37, 99, 235, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

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

/* ----------------------------------
   2. Reset & Global Styles
   ---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
  font-family: var(--font-body);
  color: var(--text-light-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-light-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ----------------------------------
   3. Reusable Components & Helpers
   ---------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  width: 0%;
  z-index: 100;
  transition: width 0.1s ease-out;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--text-light-primary);
}

.btn-white:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Gradient Texts & Badges */
.text-gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-danger {
  color: var(--danger);
}

.text-success {
  color: var(--success);
}

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

.text-warning {
  color: var(--warning);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
}

/* ----------------------------------
   4. Navigation Bar
   ---------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background-color: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

/* Dynamic styling for scrolled navbar */
nav.scrolled {
  background-color: rgba(15, 23, 42, 0.95);
  border-bottom-color: var(--border-dark);
  box-shadow: var(--shadow-lg);
}

nav.scrolled .logo-text,
nav.scrolled .nav-links a {
  color: var(--text-dark-primary);
}

nav.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light-primary);
  letter-spacing: -0.5px;
}

.logo-num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  margin-right: 8px;
}

.logo-sub {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-light-secondary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-secondary);
}

.nav-links a:hover {
  color: var(--primary);
}

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

.nav-cta-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hamburger mobile menu button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-light-primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

nav.scrolled .mobile-menu-toggle .bar {
  background-color: var(--text-dark-primary);
}

/* Mobile Dropdown Nav */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 85;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light-primary);
  padding: 8px 0;
}

/* ----------------------------------
   5. Hero Section (Premium Dark Style)
   ---------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-dark-primary);
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-section h1,
.hero-section h2 {
  color: var(--text-dark-primary);
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-dark-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust-bullets {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bullet {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
}

.trust-icon {
  color: var(--success);
  margin-right: 8px;
  font-weight: 700;
}

/* Dashboard Mockup styling */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.mockup-header {
  background-color: rgba(15, 23, 42, 0.6);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 6px;
  margin-right: 16px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: var(--danger); }
.dot-yellow { background-color: var(--warning); }
.dot-green { background-color: var(--success); }

.mockup-title {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-dark-secondary);
}

.mockup-body {
  padding: 24px;
}

.dashboard-metric {
  margin-bottom: 24px;
}

.metric-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-label {
  color: var(--text-dark-primary);
}

.metric-value {
  color: var(--success);
}

.metric-progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
  border-radius: var(--radius-full);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
}

.db-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark-secondary);
  margin-bottom: 6px;
}

.db-card-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.db-card-sub {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
  margin-top: 4px;
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.list-status {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.list-status.pass {
  background-color: var(--success-glow);
  color: var(--success);
}

.list-status.pending {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.list-text {
  flex: 1;
  margin-left: 12px;
  color: var(--text-dark-primary);
}

.list-time {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
}

/* ----------------------------------
   6. Problem Section
   ---------------------------------- */
.problem-section {
  background-color: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.problem-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bad-option {
  border-top: 4px solid var(--danger);
}

.solution-option {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--bg-light-card) 0%, var(--primary-light) 100%);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.bad-option .problem-icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.solution-option .problem-icon {
  background-color: var(--primary);
  color: #ffffff;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--text-light-secondary);
  font-size: 0.98rem;
}

/* ----------------------------------
   7. Drata Partnership Section (NEW)
   ---------------------------------- */
.partner-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.partner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.partner-logos-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px dashed var(--primary);
  border-radius: calc(var(--radius-lg) + 10px);
  opacity: 0.3;
  pointer-events: none;
}

.partner-shield {
  filter: drop-shadow(0 10px 15px rgba(37, 99, 235, 0.2));
  animation: float 4s ease-in-out infinite;
  margin-bottom: 20px;
}

.partner-badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.partner-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  margin-bottom: 20px;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.partner-feat-item {
  display: flex;
  gap: 16px;
}

.partner-feat-item .feat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.partner-feat-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.partner-feat-item p {
  color: var(--text-light-secondary);
  font-size: 0.9rem;
}

/* ----------------------------------
   8. Pillars Section
   ---------------------------------- */
.pillars-section {
  background-color: var(--bg-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
}

/* ----------------------------------
   9. Timeline Section
   ---------------------------------- */
.how-section {
  background-color: #ffffff;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Vertical timeline line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  width: 2px;
  height: 100%;
  background-color: var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-content {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light-secondary);
  margin-bottom: 16px;
}

.timeline-duration {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ----------------------------------
   10. Deliverables Section (Modern Tech Style)
   ---------------------------------- */
.deliverables-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: var(--text-dark-secondary) !important;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.deliverables-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--success-glow);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverables-list strong {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.deliverables-list div {
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
}

.deliverables-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.glowing-orb {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-slow 6s ease-in-out infinite;
}

.visual-badge {
  position: absolute;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xl);
  animation: float-slow 5s ease-in-out infinite;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
  margin-bottom: 6px;
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------
   11. Interactive Calculator Section (NEW)
   ---------------------------------- */
.calculator-section {
  background-color: var(--bg-light);
}

.calculator-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light-primary);
}

.framework-selectors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selector-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-light-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.selector-btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.selector-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.range-container {
  padding-top: 10px;
  position: relative;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background-color: var(--border-light);
  border-radius: var(--radius-full);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
  transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.slider-labels span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-secondary);
}

.slider-labels span.active {
  color: var(--primary);
}

.calc-results {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.result-box {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.result-box:last-of-type {
  border-bottom: none;
}

.result-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.result-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.result-note {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
  margin-top: 4px;
}

/* ----------------------------------
   12. Pricing Section
   ---------------------------------- */
.pricing-section {
  background-color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background-color: var(--border-light);
  color: var(--text-light-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accent-tag {
  background-color: var(--primary);
  color: #ffffff;
}

.pricing-header h3 {
  font-size: 1.15rem;
  color: var(--text-light-primary);
  margin-bottom: 8px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-duration {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-secondary);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  margin-bottom: 24px;
}

.pricing-features {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-bottom: 30px;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ----------------------------------
   13. Testimonials Section
   ---------------------------------- */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light-primary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light-primary);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
}

/* ----------------------------------
   14. FAQ Section (NEW)
   ---------------------------------- */
.faq-section {
  background-color: #ffffff;
}

.faq-accordion-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-question {
  width: 100%;
  background-color: var(--bg-light);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light-primary);
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--primary-light);
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light-secondary);
  transition: transform 0.3s ease;
}

.faq-answer {
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 20px 24px;
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-light);
}

/* Open state styles */
.faq-item.active .faq-question {
  background-color: var(--primary-light);
  color: var(--primary);
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* arbitrary height to allow CSS expansion */
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* ----------------------------------
   15. CTA Section (Premium Gradient)
   ---------------------------------- */
.cta-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.cta-card h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.15rem;
  color: var(--text-dark-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.email-link {
  color: var(--text-dark-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.email-link:hover {
  color: #ffffff;
}

/* ----------------------------------
   16. Footer
   ---------------------------------- */
.footer-section {
  background-color: #07090e;
  border-top: 1px solid var(--border-glass);
  color: var(--text-dark-secondary);
  padding: 80px 0 40px;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: var(--text-dark-secondary);
  font-size: 0.9rem;
}

.footer-links-col a:hover {
  color: #ffffff;
}

.footer-drata-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--primary-glow);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
}

/* ----------------------------------
   17. Keyframe Animations
   ---------------------------------- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

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

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* Alert/warning pulsing check */
.warning-pulse {
  animation: border-pulse 2s infinite;
}

@keyframes border-pulse {
  0%, 100% {
    border-color: var(--border-glass);
  }
  50% {
    border-color: rgba(245, 158, 11, 0.4);
  }
}

/* ----------------------------------
   18. Responsive Media Queries
   ---------------------------------- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-bullets {
    justify-content: center;
  }
  
  .problem-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .calculator-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: 40px 24px;
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
  }
}
