/* style.css - LeadPilot Design System (Hybrid Layout) */

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

:root {
  /* Colors for Light Theme (Page Body) */
  --bg-page: #faf9fc;
  --bg-card-light: #ffffff;
  --text-dark-heading: #0f0b21;
  --text-dark-body: #5e5670;
  --border-light: rgba(15, 11, 33, 0.05);
  
  /* Colors for Dark Theme (Container Blocks) */
  --bg-dark-container: #0c0915;
  --bg-card-dark: rgba(22, 18, 38, 0.7);
  --text-light-heading: #ffffff;
  --text-light-body: #9e97af;
  --border-dark: rgba(255, 255, 255, 0.06);
  
  /* Brand Constants */
  --primary-purple: #a855f7;
  --primary-pink: #ec4899;
  --purple-bright: #c084fc;
  --gradient-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.6) 0%, rgba(236, 72, 153, 0.6) 100%);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 24px;
  --border-radius-md: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-dark-body);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  background: var(--bg-page);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
  background: #e1dde9;
  border-radius: 5px;
  border: 2px solid var(--bg-page);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-purple);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark-heading);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

p {
  color: var(--text-dark-body);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.text-gradient-hero {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* BADGES & TAGS */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  color: #7c3aed;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-tag-light {
  color: #7c3aed;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-tag-dark {
  color: var(--purple-bright);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-header-light {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.section-header-light h2 {
  color: var(--text-dark-heading);
}

.section-header-dark {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.section-header-dark h2 {
  color: var(--text-light-heading);
}
.section-header-dark p {
  color: var(--text-light-body);
}

/* BACKGROUND GLOW ORBS */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-purple);
  top: 5%;
  left: -100px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--primary-pink);
  top: 35%;
  right: -150px;
}
.orb-3 {
  width: 450px;
  height: 450px;
  background: var(--primary-purple);
  top: 75%;
  left: 10%;
}

/* BUTTONS */
.btn-gradient, .btn-gradient-sm {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-gradient {
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
}

.btn-gradient-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-gradient:hover, .btn-gradient-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.45);
}

.btn-outline-hero {
  background: transparent;
  color: var(--text-dark-heading);
  border: 1px solid rgba(15, 11, 33, 0.15);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-outline-hero:hover {
  border-color: var(--text-dark-heading);
  background: rgba(15, 11, 33, 0.03);
  transform: translateY(-2px);
}

.btn-dark-hero {
  background: #0f0b21;
  color: #ffffff;
  border: 1px solid #0f0b21;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-dark-hero:hover {
  background: #1b1635;
  border-color: #1b1635;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 11, 33, 0.15);
}

.btn-outline-sm {
  background: transparent;
  color: var(--text-dark-heading);
  border: 1px solid rgba(15, 11, 33, 0.15);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-outline-sm:hover {
  border-color: var(--text-dark-heading);
  background: rgba(15, 11, 33, 0.03);
}

.btn-outline-pricing {
  background: transparent;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-outline-pricing:hover {
  background: rgba(124, 58, 237, 0.05);
  border-color: #7c3aed;
}

.btn-link {
  color: var(--text-dark-body);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.btn-link:hover {
  color: var(--text-dark-heading);
}

/* HEADER & NAVIGATION (LIGHT GLASSMORPHISM) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 249, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark-heading);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-primary);
  position: relative;
}
.logo-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  clip-path: polygon(40% 0%, 40% 40%, 0% 40%, 0% 60%, 40% 60%, 40% 100%, 60% 100%, 60% 60%, 100% 60%, 100% 40%, 60% 40%, 60% 0%);
  transform: rotate(45deg);
}

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

.dropdown {
  position: relative;
}
.dropdown-trigger {
  color: var(--text-dark-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}
.dropdown-trigger i {
  width: 14px;
  height: 14px;
  transition: var(--transition-smooth);
}
.dropdown:hover .dropdown-trigger {
  color: var(--text-dark-heading);
}
.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(15, 11, 33, 0.05);
  transition: var(--transition-smooth);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text-dark-body);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.dropdown-menu a:hover {
  background: rgba(124, 58, 237, 0.05);
  color: var(--text-dark-heading);
  padding-left: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark-heading);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #ffffff;
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  border-top: 1px solid var(--border-light);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--text-dark-body);
  font-size: 1.25rem;
  text-decoration: none;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}
.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HERO SECTION (LIGHT THEME) */
.hero {
  padding: 180px 0 100px 0;
  position: relative;
  background: var(--bg-page);
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  color: var(--text-dark-heading);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-dark-body);
  margin-bottom: 36px;
}

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

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dbd2f3;
  border: 2px solid #ffffff;
  margin-right: -10px;
  display: inline-block;
}
.avatar:nth-child(1) { background: #a855f7; }
.avatar:nth-child(2) { background: #7c3aed; }
.avatar:nth-child(3) { background: #ec4899; }
.avatar:nth-child(4) { background: #3b82f6; }

.social-text {
  font-size: 0.85rem;
  color: var(--text-dark-body);
  font-weight: 500;
}

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

.dashboard-wrapper {
  position: relative;
  width: 100%;
}

.dashboard-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--gradient-primary);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* FLOATING SCREENSHOT KEYFRAME */
@keyframes floatAnimation {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-screenshot {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 11, 33, 0.08);
  box-shadow: 0 20px 45px rgba(15, 11, 33, 0.08), 0 0 30px rgba(168, 85, 247, 0.05);
  animation: floatAnimation 7s ease-in-out infinite;
  transition: var(--transition-smooth);
}
.floating-screenshot:hover {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 25px 55px rgba(15, 11, 33, 0.12), 0 0 45px rgba(168, 85, 247, 0.15);
}

/* DARK SECTION CONTAINER (ROUNDED DARK BOX ON LIGHT PAGE) */
.dark-section-container {
  background: var(--bg-dark-container);
  border-radius: 32px;
  padding: 80px 48px;
  margin: 40px auto;
  max-width: 1200px;
  width: calc(100% - 48px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(12, 9, 21, 0.35);
  position: relative;
}

.problem-wrapper {
  margin-bottom: 80px;
}

/* Cost Stack Grid inside dark section */
.comparison-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.05fr 0.85fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.stack-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.icon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}
.icon-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* Individual card brand properties */
.apollo-card:hover { border-color: rgba(234, 179, 8, 0.3); }
.calendly-card:hover { border-color: rgba(59, 130, 246, 0.3); }
.hubspot-card:hover { border-color: rgba(249, 115, 22, 0.3); }
.intercom-card:hover { border-color: rgba(30, 41, 59, 0.5); }
.pandadoc-card:hover { border-color: rgba(34, 197, 94, 0.3); }
.gong-card:hover { border-color: rgba(168, 85, 247, 0.3); }

.icon-brand {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.apollo-icon { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.calendly-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.hubspot-icon { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.intercom-icon { background: rgba(255, 255, 255, 0.05); color: #f8fafc; }
.pandadoc-icon { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.gong-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.icon-details h4 {
  color: var(--text-light-heading);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.icon-details p {
  font-size: 0.8rem;
  color: var(--text-light-body);
  margin-bottom: 0;
}

.layout-divider {
  width: 1px;
  height: 80%;
  background: rgba(255, 255, 255, 0.08);
  justify-self: center;
}

.stack-summary-box {
  padding-left: 20px;
}

.pay-now-block {
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}
.summary-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-body);
  display: block;
  margin-bottom: 8px;
}
.pay-now-block h3 {
  font-size: 3.25rem;
  color: #f87171;
  font-family: var(--font-heading);
  font-weight: 800;
}
.pay-now-block .period {
  font-size: 1.25rem;
  color: var(--text-light-body);
  font-weight: 500;
}

.lp-deal-block h3 {
  font-size: 2.5rem;
  color: var(--text-light-heading);
  font-family: var(--font-heading);
  line-height: 1.15;
}

/* Part 2: Snake Journey Timeline inside dark section */
.journey-wrapper {
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 80px;
}

.snake-journey-wrapper {
  position: relative;
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.snake-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Row 1 connects left to right */
/* Row 2 connects right to left in reverse logic, but physically elements run left-to-right */
.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 120px;
  text-align: center;
  transition: var(--transition-smooth);
}

.node-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #141122;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}
.node-icon i {
  width: 20px;
  height: 20px;
}

.node-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-body);
  transition: var(--transition-smooth);
}

/* Node Hover & Active states */
.journey-node:hover .node-icon {
  border-color: var(--primary-purple);
  color: var(--text-light-heading);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.journey-node.active .node-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-light-heading);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.7);
}
.journey-node.active .node-title {
  color: var(--purple-bright);
}

/* Connector curve lines using background lines */
.snake-journey-wrapper::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  width: 90%;
  height: 110px;
  border-top: 2px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.08);
  border-right: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 0 24px 24px 0;
  pointer-events: none;
  z-index: 1;
}

.card-dark {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.journey-details-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.journey-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-icon-box i {
  width: 22px;
  height: 22px;
}

.journey-details h4 {
  font-size: 1.15rem;
  color: var(--text-light-heading);
  margin-bottom: 4px;
}
.journey-details p {
  font-size: 0.9rem;
  color: var(--text-light-body);
  margin-bottom: 0;
}

/* 9-TOOLS SECTION (LIGHT THEME) */
.nine-tools {
  padding: 100px 0;
  background: var(--bg-page);
}

.nine-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.tool-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(15, 11, 33, 0.015);
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 11, 33, 0.05);
}

.tool-card.active {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.08);
}

.tool-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}
.tool-icon-wrapper i {
  width: 20px;
  height: 20px;
}

.purple-glow { background: rgba(168, 85, 247, 0.06); color: var(--primary-purple); }
.pink-glow { background: rgba(236, 72, 153, 0.06); color: var(--primary-pink); }
.blue-glow { background: rgba(59, 130, 246, 0.06); color: #3b82f6; }

.tool-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark-heading);
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-dark-body);
  margin-bottom: 0;
}

.dashboard-preview-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* AI SALES COACH SECTION (LIGHT THEME) */
.ai-coach {
  padding: 100px 0;
  background: var(--bg-page);
}

.coach-text-block h2 {
  color: var(--text-dark-heading);
}

.coach-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.check-item {
  display: flex;
  gap: 16px;
}
.check-item i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-item h4 {
  font-size: 1.05rem;
  color: var(--text-dark-heading);
  margin-bottom: 4px;
}
.check-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Mock Representative Dashboard cards */
.coach-visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-coach-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 11, 33, 0.04);
}

.rep-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rep-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9e5f5;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.rep-profile h4 {
  font-size: 0.95rem;
  color: var(--text-dark-heading);
}
.rep-profile p {
  font-size: 0.75rem;
  color: var(--text-dark-body);
  margin-bottom: 0;
}

.score-badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.score-high { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.score-low { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.rep-commitment {
  font-size: 0.85rem;
  color: var(--text-dark-body);
  padding: 8px 12px;
  background: #faf9fc;
  border-radius: 6px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.done .status-indicator { background: #22c55e; }
.missed .status-indicator { background: #ef4444; }

.ai-insight-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--border-radius-md);
  padding: 16px;
  margin-top: 12px;
}
.insight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #7c3aed;
  margin-bottom: 8px;
}
.insight-header i {
  width: 14px;
  height: 14px;
}
.ai-insight-box p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dark-body);
  margin-bottom: 0;
}

/* MEETING BOOKING (DARK SECTION) */
.meetings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

/* Mock Calendar details */
.mock-calendar-card {
  background: #141123;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.calendar-header h4 {
  color: var(--text-light-heading);
  font-size: 1.1rem;
}

.duration-badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-light-body);
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.calendar-grid h5 {
  color: var(--text-light-heading);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
}
.calendar-days span {
  font-size: 0.8rem;
  color: var(--text-light-body);
  padding: 6px 0;
  border-radius: 4px;
}
.day-head {
  font-weight: 700;
  color: var(--purple-bright) !important;
}
.calendar-days span:not(.day-head) {
  cursor: pointer;
}
.calendar-days span:not(.day-head):hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-heading);
}
.calendar-days .selected {
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-weight: 700;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slot {
  font-size: 0.8rem;
  color: var(--text-light-body);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.slot:hover {
  border-color: var(--primary-purple);
  color: var(--text-light-heading);
}
.slot.active {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--primary-purple);
  color: var(--purple-bright);
  font-weight: 600;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  margin-top: 20px;
}
.timezone-text {
  font-size: 0.7rem;
  color: var(--text-light-body);
  display: flex;
  align-items: center;
  gap: 4px;
}

.meetings-features-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.meeting-feature-card {
  display: flex;
  gap: 16px;
}
.meeting-feature-card i {
  color: var(--purple-bright);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.meeting-feature-card h3 {
  font-size: 1.1rem;
  color: var(--text-light-heading);
  margin-bottom: 4px;
}
.meeting-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light-body);
  margin-bottom: 0;
}

/* Integrated Stats bar at bottom of dark container */
.stats-bar-integrated {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 40px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  line-height: 1.1;
}
.stat-item p {
  font-size: 0.8rem;
  color: var(--text-light-body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* AI OPERATING SYSTEM (LIGHT BASE + NODE CIRCLE DIAGRAM) */
.ai-os-hybrid {
  padding: 100px 0;
  background: var(--bg-page);
}

.ai-os-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}

.os-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(15, 11, 33, 0.015);
  transition: var(--transition-smooth);
}
.os-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.2);
}
.os-card i {
  color: #7c3aed;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
}
.os-card h4 {
  font-size: 1.05rem;
  color: var(--text-dark-heading);
  margin-bottom: 6px;
}
.os-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Circular Diagram styling */
.os-diagram-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-pulse {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.08);
  animation: pulseGlow 3s infinite ease-in-out;
}
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.diagram-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  z-index: 10;
  position: relative;
}
.center-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
}
.center-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.diagram-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.d-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(15, 11, 33, 0.03);
  z-index: 5;
  top: calc(50% + (var(--radius) * sin(var(--angle))) - 32px);
  left: calc(50% + (var(--radius) * cos(var(--angle))) - 32px);
}
/* Fallback positioning for browsers lacking sin/cos support */
.d-node.node-crm { top: 50%; left: calc(50% + 120px - 32px); }
.d-node.node-leads { top: calc(50% + 85px - 32px); left: calc(50% + 85px - 32px); }
.d-node.node-seq { top: calc(50% + 120px - 32px); left: 50%; }
.d-node.node-meetings { top: calc(50% + 85px - 32px); left: calc(50% - 85px - 32px); }
.d-node.node-quotes { top: 50%; left: calc(50% - 120px - 32px); }
.d-node.node-chats { top: calc(50% - 85px - 32px); left: calc(50% - 85px - 32px); }
.d-node.node-forms { top: calc(50% - 120px - 32px); left: 50%; }
.d-node.node-coach { top: calc(50% - 85px - 32px); left: calc(50% + 85px - 32px); }

.d-node i {
  color: #7c3aed;
  width: 18px;
  height: 18px;
}
.d-node span {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-dark-body);
  margin-top: 2px;
}

/* PRICING SECTION (LIGHT BASE WITH SHADOW CARDS) */
.pricing {
  padding: 100px 0;
  background: var(--bg-page);
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.toggle-label {
  font-weight: 600;
  color: var(--text-dark-body);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.toggle-label.active {
  color: var(--text-dark-heading);
}

.badge-discount {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 4px;
}

.pricing-toggle {
  width: 54px;
  height: 28px;
  border-radius: 15px;
  background: #dbd2f3;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}
.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}
.pricing-toggle.active {
  background: #7c3aed;
}
.pricing-toggle.active::after {
  left: 29px;
}

.pricing-subtext {
  font-size: 0.85rem;
  color: var(--text-dark-body);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 44px 32px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 11, 33, 0.015);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 11, 33, 0.05);
}

.pricing-card.recommended {
  border: 2px solid #7c3aed;
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.08);
}
.pricing-card.recommended:hover {
  box-shadow: 0 25px 55px rgba(124, 58, 237, 0.15);
}

.recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.plan-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.plan-header h3 {
  font-size: 1.5rem;
  color: var(--text-dark-heading);
  margin-bottom: 8px;
}
.plan-header p {
  font-size: 0.9rem;
  color: var(--text-dark-body);
  margin-bottom: 20px;
  min-height: 48px;
}

.plan-price {
  margin-bottom: 4px;
}
.plan-price .dollar {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-dark-heading);
}
.plan-price .amount {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark-heading);
  line-height: 1;
}
.plan-price .period {
  font-size: 1rem;
  color: var(--text-dark-body);
}

.billing-type {
  font-size: 0.8rem;
  color: var(--text-dark-body);
  display: block;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark-body);
}
.pricing-features li i {
  color: #7c3aed;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* TESTIMONIALS (DARK CONTAINER BLOCK ON LIGHT PAGE) */
.testimonial-card-dark {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.testimonial-card-dark:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.star-fill {
  color: #fbbf24;
  fill: #fbbf24;
  width: 16px;
  height: 16px;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light-heading);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.k-avatar { background: #7c3aed; }
.m-avatar { background: #ec4899; }
.a-avatar { background: #3b82f6; }

.client-avatar::after {
  content: '';
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}
.k-avatar::after { content: 'K'; }
.m-avatar::after { content: 'M'; }
.a-avatar::after { content: 'A'; }

.client-info h4 {
  font-size: 1rem;
  color: var(--text-light-heading);
  margin-bottom: 2px;
}
.client-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light-body);
}
.client-info .location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: var(--purple-bright);
}
.client-info .location i {
  width: 12px;
  height: 12px;
}

.testimonials-summary-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  text-align: center;
}
.testimonials-summary-dark h3 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.testimonials-summary-dark p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light-body);
}

/* CTA HYBRID SECTION (LIGHT BG + RADIAL BURST AT BOTTOM) */
.cta-hybrid {
  padding: 120px 0;
  background: var(--bg-page);
  position: relative;
  background-image: radial-gradient(circle at bottom, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.08) 35%, var(--bg-page) 65%);
}

.cta-container-hybrid {
  text-align: center;
  max-width: 800px;
}
.cta-container-hybrid h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-dark-heading);
}
.cta-container-hybrid p {
  font-size: 1.2rem;
  color: var(--text-dark-body);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-bulletins {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--text-dark-body);
  font-size: 0.9rem;
}
.cta-bulletins span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-bulletins span i {
  color: #22c55e;
  width: 16px;
  height: 16px;
}

/* FOOTER (DEEP DARK BLOCK WITH INTEGRATED TOP REPLACE BANNER) */
.footer {
  background: #040207;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0 0 40px 0;
  font-size: 0.9rem;
}

.footer-banner {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-40px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.banner-text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.banner-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #ffffff;
}
.banner-stats strong {
  font-size: 1.1rem;
}
.banner-stats .btn-gradient-sm {
  background: #ffffff;
  color: var(--text-dark-heading);
}
.banner-stats .btn-gradient-sm:hover {
  background: #eae8f0;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-light-body);
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-body);
  transition: var(--transition-smooth);
}
.social-links a:hover {
  color: #ffffff;
  border-color: var(--primary-purple);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  color: var(--text-light-body);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}
.footer-links-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light-body);
}

.footer-bottom-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-bright);
}

/* RESPONSIVE LAYOUT STYLING */

@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .social-proof {
    justify-content: center;
  }
  
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  .layout-divider {
    display: none;
  }
  .stack-summary-box {
    padding-left: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
  }
  
  .nine-tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .meetings-layout {
    grid-template-columns: 1fr;
  }
  
  .ai-os-layout {
    grid-template-columns: 1fr;
  }
  .os-diagram-wrapper {
    margin: 40px 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 40px auto 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .header-container {
    height: 70px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links, .header-actions {
    display: none;
  }
  
  .mobile-nav {
    display: flex;
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .dark-section-container {
    width: calc(100% - 24px);
    padding: 60px 20px;
  }
  
  .stack-icons-grid {
    grid-template-columns: 1fr;
  }
  
  .snake-journey-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .snake-row {
    width: 750px;
  }
  .snake-journey-wrapper::before {
    display: none; /* Hide connector lines on mobile scroll */
  }
  
  .nine-tools-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-bar-integrated {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .testimonials-summary-dark {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .cta-container-hybrid h2 {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons a {
    width: 100%;
    max-width: 280px;
  }
  .cta-bulletins {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
