/* ============================================
   NEXRON SOLUTIONS - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --orange: #F7941D;
  --orange-light: #FFF4E6;
  --orange-dark: #E07D0A;
  --dark: #1A1A2E;
  --dark-gray: #2D3748;
  --medium-gray: #4A5568;
  --light-gray: #E2E8F0;
  --off-white: #F7F8FC;
  --white: #FFFFFF;
  
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--medium-gray);
  font-size: 1.1rem;
}

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

.container-lg {
  max-width: 1400px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link:hover::after {
  width: 100%;
}

/* Prevent underline expansion on dropdown trigger hover/active */
.nav-dropdown-trigger.nav-link:hover::after,
.nav-dropdown-trigger.nav-link.active::after {
  width: 6px;
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.nav-login {
  color: var(--orange);
  font-weight: 600;
}

.nav-login:hover {
  color: var(--orange-dark);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* Override the nav-link underline — restyle as dropdown chevron */
.nav-dropdown-trigger.nav-link::after {
  position: static;
  width: 6px;
  height: 6px;
  background: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -2px;
}

.nav-dropdown:hover .nav-dropdown-trigger.nav-link::after,
.nav-dropdown.open .nav-dropdown-trigger.nav-link::after {
  width: 6px;
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
  border-top: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 6px 0;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    padding: 0 0 0 16px;
    display: none;
    border-left: 2px solid var(--orange-light);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.03) 0%, rgba(247, 148, 29, 0.08) 100%);
  clip-path: ellipse(80% 100% at 50% 100%);
}

.hero-wave-2 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.05) 0%, transparent 100%);
  clip-path: ellipse(100% 60% at 100% 40%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  display: inline-block;
  padding: 8px 20px;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--orange), #e8850a);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.35);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
}

/* Alternating background */
.section-alt {
  background: var(--off-white);
}

/* ============================================
   SPOTLIGHT SECTION (Nexron Vision)
   ============================================ */
.spotlight {
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(247, 148, 29, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight .section-label {
  background: linear-gradient(135deg, var(--orange), #e8850a);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.spotlight-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.spotlight-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spotlight-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.spotlight-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}

.spotlight-feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.spotlight-visual {
  position: relative;
}

.spotlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.spotlight-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.spotlight-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.spotlight-card h4 {
  color: var(--dark);
}

.spotlight-card p {
  color: var(--medium-gray);
  font-size: 1rem;
  margin-bottom: 24px;
}

.spotlight-demo {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.spotlight-demo-placeholder {
  height: 160px;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-weight: 500;
}

@media (max-width: 968px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
}

.service-card h4 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LEAD FUNNEL SECTION
   ============================================ */
.funnel-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.funnel-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.funnel-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.funnel-header {
  background: linear-gradient(135deg, var(--orange-light) 0%, #FFF9F0 100%);
  padding: 24px 32px;
  border-bottom: 1px solid rgba(247, 148, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funnel-header h4 {
  font-size: 1.1rem;
}

.funnel-badge {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.funnel-iframe-wrapper {
  position: relative;
  min-height: 500px;
}

.funnel-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  z-index: 10;
  transition: opacity 0.5s ease;
}

.funnel-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.funnel-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.funnel-loader p {
  font-size: 0.95rem;
  color: var(--medium-gray);
}

.funnel-iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.funnel-placeholder {
  padding: 60px 40px;
  text-align: center;
}

.funnel-placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.funnel-placeholder-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--orange);
}

.funnel-placeholder h4 {
  margin-bottom: 12px;
}

.funnel-placeholder p {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

/* 3D Testimonials Carousel */
.testimonials-section {
  overflow: hidden;
}

.testimonials-3d-wrapper {
  position: relative;
  padding: 60px 0 40px;
  perspective: 1000px;
}

.testimonials-3d-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 480px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-3d-card {
  position: absolute;
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
  transform: scale(0.8) translateX(0);
  z-index: 1;
  pointer-events: none;
}

.testimonial-3d-card.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 10;
  pointer-events: auto;
}

.testimonial-3d-card.prev {
  transform: scale(0.75) translateX(-120%);
  z-index: 5;
}

.testimonial-3d-card.next {
  transform: scale(0.75) translateX(120%);
  z-index: 5;
}

.testimonial-3d-card.far-prev {
  transform: scale(0.6) translateX(-200%);
  opacity: 0;
  z-index: 1;
}

.testimonial-3d-card.far-next {
  transform: scale(0.6) translateX(200%);
  opacity: 0;
  z-index: 1;
}

.testimonial-3d-avatar {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-3d-card .avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
}

.testimonial-3d-card .placeholder-avatar {
  background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-3d-location {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
}

.testimonial-3d-card.placeholder .testimonial-3d-location {
  color: var(--medium-gray);
}

.testimonial-3d-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 20px;
}

.testimonial-3d-card.placeholder .testimonial-3d-name {
  color: var(--medium-gray);
}

.testimonial-3d-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-3d-card.placeholder .testimonial-3d-text {
  color: var(--medium-gray);
}

.testimonial-3d-product {
  display: inline-block;
  padding: 8px 20px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 25px;
  margin-bottom: 12px;
}

.placeholder-product {
  background: var(--light-gray);
  color: var(--medium-gray);
}

.testimonial-3d-company {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.testimonials-3d-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-3d-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-3d-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.testimonial-3d-dot:hover {
  background: var(--orange);
}

@media (max-width: 768px) {
  .testimonials-3d-carousel {
    height: 520px;
  }
  
  .testimonial-3d-card {
    max-width: 90%;
    padding: 50px 24px 30px;
  }
  
  .testimonial-3d-card.prev,
  .testimonial-3d-card.next {
    transform: scale(0.7) translateX(-80%);
    opacity: 0.3;
  }
  
  .testimonial-3d-card.next {
    transform: scale(0.7) translateX(80%);
  }
  
  .testimonial-3d-card .avatar-circle {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  
  .testimonial-3d-avatar {
    top: -40px;
  }
  
  .testimonial-3d-name {
    font-size: 1.25rem;
  }
  
  .testimonial-3d-text {
    font-size: 0.95rem;
  }
}

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

.testimonials-placeholder {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--light-gray);
}

.testimonials-placeholder h4 {
  margin-bottom: 12px;
  color: var(--medium-gray);
}

.testimonials-placeholder p {
  color: var(--medium-gray);
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(247, 148, 29, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   WHY NEXRON PAGE
   ============================================ */
.why-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.why-hero h1 {
  margin-bottom: 20px;
}

.why-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.differentiator-card {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.differentiator-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.differentiator-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differentiator-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
}

.differentiator-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.differentiator-content p {
  font-size: 1rem;
}

.differentiator-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  border: none;
}

.differentiator-card.featured .differentiator-icon {
  background: rgba(247, 148, 29, 0.2);
}

.differentiator-card.featured h3 {
  color: var(--white);
}

.differentiator-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .differentiator-grid {
    grid-template-columns: 1fr;
  }
  
  .differentiator-card.featured {
    grid-column: span 1;
  }
  
  .differentiator-card {
    flex-direction: column;
    text-align: center;
  }
  
  .differentiator-icon {
    margin: 0 auto;
  }
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}

.process-step h4 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

/* Services Quick Nav */
.services-quicknav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.services-quicknav-inner {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}

.services-quicknav-inner::-webkit-scrollbar {
  display: none;
}

.services-quicknav-btn {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--off-white);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.services-quicknav-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.services-quicknav-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

@media (max-width: 768px) {
  .services-quicknav-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 12px 0;
  }

  .services-quicknav-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.alt {
  background: var(--off-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail.reverse .service-detail-grid > * {
  direction: ltr;
}

.service-detail-content .section-label {
  margin-bottom: 20px;
}

.service-detail-content h2 {
  margin-bottom: 20px;
}

.service-detail-content > p {
  margin-bottom: 32px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-feature-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-feature-item span {
  font-size: 1.05rem;
  color: var(--dark-gray);
}

.service-detail-visual {
  position: relative;
}

.service-visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.service-visual-icon {
  width: 100px;
  height: 100px;
  background: var(--orange-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-visual-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--orange);
}

.service-visual-card h4 {
  margin-bottom: 8px;
}

.service-visual-card p {
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail.reverse .service-detail-grid {
    direction: ltr;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info > p {
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.contact-method-text h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: 4px;
}

.contact-method-text a,
.contact-method-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-method-text a:hover {
  color: var(--orange);
}

.calendar-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.calendar-section h3 {
  margin-bottom: 24px;
  text-align: center;
}

.calendar-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
}

.calendar-placeholder {
  padding: 80px 40px;
  text-align: center;
  background: var(--off-white);
}

.calendar-placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.calendar-placeholder-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--orange);
}

.calendar-placeholder h4 {
  margin-bottom: 12px;
}

.calendar-placeholder p {
  max-width: 400px;
  margin: 0 auto 24px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Contact Form */
.contact-form {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--light-gray);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width,
  .form-submit {
    grid-column: span 1;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

/* Extended footer layout (used on legal pages) */
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  line-height: 1.6;
}

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

.footer-col h5,
.footer-contact h5 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-logo img {
  height: 80px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--orange);
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-contact a {
    justify-content: center;
  }
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.text-orange {
  color: var(--orange);
}

.text-center {
  text-align: center;
}

/* Fade in animation */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; opacity: 0; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; }
.stagger-4 { animation-delay: 0.4s; opacity: 0; }
.stagger-5 { animation-delay: 0.5s; opacity: 0; }
.stagger-6 { animation-delay: 0.6s; opacity: 0; }

/* Responsive */
@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1 .separator {
    display: block;
    margin: 8px 0;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ============================================
   GROWTH ENGINE EMBEDDED STYLES
   ============================================ */
.growth-engine-app {
  padding: 40px;
  min-height: 450px;
  position: relative;
}

.ge-step {
  display: none;
  animation: geFadeIn 0.4s ease;
}

.ge-step.ge-active {
  display: block;
}

@keyframes geFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress Bar */
.ge-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.ge-progress-bar {
  flex: 1;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 3px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(247, 148, 29, 0.3);
}

.ge-progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--medium-gray);
  min-width: 40px;
  text-align: right;
}

/* Titles */
.ge-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ge-subtitle {
  font-size: 1.05rem;
  color: var(--medium-gray);
  margin-bottom: 32px;
}

/* Options Grid (Step 1) */
.ge-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ge-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.ge-option:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ge-option.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 0 20px rgba(247, 148, 29, 0.15);
}

.ge-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: var(--radius-md);
  color: var(--medium-gray);
  transition: var(--transition);
}

.ge-option:hover .ge-option-icon,
.ge-option.selected .ge-option-icon {
  background: var(--orange);
  color: var(--white);
}

.ge-option span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-align: center;
}

/* Other Input */
.ge-other-input {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 8px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
}

.ge-other-input:focus-within {
  border-color: var(--orange);
}

.ge-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
}

.ge-btn-next {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ge-btn-next:hover {
  background: var(--orange-dark);
}

/* Options List (Steps 2 & 3) */
.ge-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ge-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.ge-option-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ge-option-card.selected {
  border-color: var(--orange);
  background: var(--orange-light);
}

.ge-option-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ge-option-card-content strong {
  font-size: 1.1rem;
  color: var(--dark);
}

.ge-option-card-content span {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.ge-option-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  transition: var(--transition);
}

.ge-option-card.selected .ge-option-check {
  background: var(--orange);
  border-color: var(--orange);
  position: relative;
}

.ge-option-card.selected .ge-option-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

/* Navigation */
.ge-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}

.ge-btn-back {
  padding: 10px 20px;
  background: transparent;
  border: none;
  color: var(--medium-gray);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.ge-btn-back:hover {
  background: var(--off-white);
  color: var(--dark);
}

/* Form (Step 4) */
.ge-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ge-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ge-form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.ge-optional {
  font-weight: 400;
  color: var(--medium-gray);
}

.ge-form-group input {
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--off-white);
  transition: var(--transition);
}

.ge-form-group input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.ge-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.4);
}

.ge-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.5);
}

/* Loading (Step 5) */
.ge-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.ge-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: geSpin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes geSpin {
  to { transform: rotate(360deg); }
}

.ge-loading h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.ge-loading p {
  color: var(--medium-gray);
}

/* Results (Step 6) */
.ge-results-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.ge-results-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ge-results-icon svg {
  stroke: var(--orange);
}

.ge-results-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.ge-results-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.ge-results-header span {
  color: var(--orange);
  font-weight: 600;
}

/* Recommendations */
.ge-recommendations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ge-rec-item {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.ge-rec-item.open {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.ge-rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
}

.ge-rec-header:hover {
  background: var(--off-white);
}

.ge-rec-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ge-rec-num {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--medium-gray);
  transition: var(--transition);
}

.ge-rec-item.open .ge-rec-num {
  background: var(--orange);
  color: var(--white);
}

.ge-rec-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.ge-rec-arrow {
  color: var(--medium-gray);
  transition: var(--transition);
}

.ge-rec-item.open .ge-rec-arrow {
  transform: rotate(90deg);
  color: var(--orange);
}

.ge-rec-content {
  padding: 0 20px 20px 68px;
  color: var(--medium-gray);
  line-height: 1.6;
  display: none;
}

.ge-rec-item.open .ge-rec-content {
  display: block;
}

/* Results CTA */
.ge-results-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  gap: 24px;
}

.ge-results-cta h4 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.ge-results-cta p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.ge-btn-cta {
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.ge-btn-cta:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .growth-engine-app {
    padding: 24px;
  }
  
  .ge-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ge-title {
    font-size: 1.5rem;
  }
  
  .ge-results-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ge-options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .ge-option {
    padding: 16px 12px;
  }
  
  .ge-results-header {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   NEXRON VISION DEMO SECTION
   ============================================ */
.vision-demo-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #E2E8F0;
}

.vision-demo-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-demo-header h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  color: #1A1A2E;
}

.vision-demo-header p {
  font-size: 1.1rem;
  color: #4A5568;
  max-width: 500px;
  margin: 0 auto;
}

.vision-demo-container {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.vision-demo-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #FFFFFF;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.vision-demo-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.vision-demo-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #E2E8F0;
  border-top-color: #F7941D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.vision-demo-loader p {
  font-size: 0.95rem;
  color: #4A5568;
}

/* Vision skeleton loading */
.vision-skeleton {
  padding: 24px;
  width: 100%;
}

.vision-skeleton-shimmer {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: vision-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes vision-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.vision-skeleton-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 0;
}

.vision-skeleton-upload {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e2e8f0;
  background: #f8fafc;
}

.vision-skeleton-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vision-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.vision-skeleton-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.vision-skeleton-card-img {
  width: 100%;
  aspect-ratio: 1;
}

@media (max-width: 768px) {
  .vision-skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vision-skeleton-upload {
    height: 220px;
  }
}

.vision-demo-iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
}

.vision-demo-caption {
  text-align: center;
  font-size: 0.95rem;
  color: #4A5568;
  margin-top: 20px;
  font-style: italic;
}

/* Legal Pages Styles */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: white;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.legal-content {
  padding: 80px 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

.legal-meta {
  background: #F8FAFC;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.legal-meta p {
  margin: 4px 0;
  color: #4A5568;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.legal-section p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #4A5568;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
  line-height: 1.6;
}

.legal-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #F7941D;
}

.legal-contact {
  background: #F8FAFC;
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.legal-contact p {
  margin: 8px 0;
}

.legal-contact a {
  color: #F7941D;
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .vision-demo-section {
    margin-top: 50px;
    padding-top: 40px;
  }

  .vision-demo-iframe {
    height: 1150px;
  }
}

@media (max-width: 480px) {
  .vision-demo-iframe {
    height: 1200px;
  }
}

/* Growth Engine Validation Styles */
.ge-input-error {
  border-color: #e53e3e !important;
  background-color: #fff5f5 !important;
}

.ge-validation-error {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ge-validation-error::before {
  content: "⚠";
  font-size: 0.9rem;
}

/* Vision Before/After Preview */
.vision-preview-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #E2E8F0;
}

.vision-before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.vision-compare-item {
  position: relative;
  flex: 1;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.vision-compare-item img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vision-label-after {
  background: var(--orange);
}

.vision-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vision-before-after {
    flex-direction: column;
    gap: 16px;
  }
  
  .vision-compare-item {
    max-width: 100%;
  }
  
  .vision-arrow {
    transform: rotate(90deg);
    width: 50px;
    height: 50px;
  }
  
  .vision-arrow svg {
    width: 24px;
    height: 24px;
  }
}

/* Spotlight Before/After (index page) */
.spotlight-before-after {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.spotlight-compare-item {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  aspect-ratio: 1 / 1;
}

.spotlight-compare-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spotlight-label-after {
  background: var(--orange);
}

.spotlight-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .spotlight-before-after {
    flex-direction: column;
    gap: 8px;
  }
  
  .spotlight-arrow {
    transform: rotate(90deg);
    width: 32px;
    height: 32px;
  }
  
  .spotlight-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* Custom Booking Calendar Styles */
.calendar-section h3 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.calendar-subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.booking-calendar {
  background: linear-gradient(145deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(247, 148, 29, 0.1), var(--shadow-lg);
  overflow: hidden;
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(247, 148, 29, 0.1);
}

/* Calendar Panel */
.calendar-panel {
  padding: 2rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--off-white);
}

.calendar-month {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calendar-nav-btn {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.calendar-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.calendar-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-nav-btn:disabled:hover {
  background: var(--white);
  border-color: var(--light-gray);
  color: var(--dark);
  transform: none;
  box-shadow: var(--shadow-sm);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 0.75rem;
  background: var(--off-white);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  background: var(--white);
  color: var(--dark);
  position: relative;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--orange-light);
  border-color: var(--orange);
}

.calendar-day.empty {
  cursor: default;
  background: transparent;
}

.calendar-day.disabled {
  color: var(--light-gray);
  cursor: not-allowed;
  background: transparent;
}

.calendar-day.today {
  border-color: var(--orange);
  background: var(--orange-light);
  font-weight: 700;
}

.calendar-day.selected {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.calendar-day.has-slots {
  font-weight: 700;
  color: var(--dark);
}

.calendar-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Calendar Loading - Small spinner in header */
.calendar-loading {
  display: none;
  position: absolute;
  top: 2.3rem;
  right: 5rem;
  z-index: 10;
}

.calendar-loading.show {
  display: block;
}

.calendar-spinner-small {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Time Slots Panel */
.timeslots-panel {
  display: none;
  padding: 2rem;
}

.timeslots-panel.show {
  display: block;
}

.timeslots-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--off-white);
}

.back-to-calendar,
.back-to-timeslots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--light-gray);
  color: var(--medium-gray);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.back-to-calendar:hover,
.back-to-timeslots:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-light);
}

.selected-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.timeslots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.25rem;
}

.timeslot {
  padding: 1rem 1.25rem;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.timeslot:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.2);
}

.timeslot.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.no-slots-message {
  text-align: center;
  color: var(--medium-gray);
  padding: 3rem 2rem;
  grid-column: 1 / -1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

/* Booking Form Panel */
.booking-form-panel {
  display: none;
  padding: 2rem;
}

.booking-form-panel.show {
  display: block;
}

.booking-form-header {
  margin-bottom: 2rem;
}

.booking-summary {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 4px solid var(--orange);
}

.booking-date {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.booking-time {
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-form-group input {
  padding: 1rem 1.25rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.booking-form-group input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.1);
}

.booking-form-group input::placeholder {
  color: var(--light-gray);
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.booking-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
  transition: all 0.3s ease;
}

.booking-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Confirmation Panel */
.booking-confirmation {
  display: none;
  padding: 4rem 2rem;
  text-align: center;
}

.booking-confirmation.show {
  display: block;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
}

.booking-confirmation h4 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.confirmation-details {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.confirmation-details strong {
  color: var(--dark);
  display: block;
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

.confirmation-email {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.confirmation-email strong {
  color: var(--orange);
}

/* Error State */
.booking-error {
  display: none;
  padding: 4rem 2rem;
  text-align: center;
}

.booking-error.show {
  display: block;
}

.error-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.error-icon svg {
  width: 40px;
  height: 40px;
}

.booking-error h4 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.error-message {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hide panels when showing other panels */
.booking-calendar.show-timeslots .calendar-panel {
  display: none;
}

.booking-calendar.show-form .calendar-panel,
.booking-calendar.show-form .timeslots-panel {
  display: none;
}

.booking-calendar.show-confirmation .calendar-panel,
.booking-calendar.show-confirmation .timeslots-panel,
.booking-calendar.show-confirmation .booking-form-panel {
  display: none;
}

.booking-calendar.show-error .calendar-panel,
.booking-calendar.show-error .timeslots-panel,
.booking-calendar.show-error .booking-form-panel {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-calendar {
    min-height: 450px;
  }

  .calendar-panel,
  .timeslots-panel,
  .booking-form-panel {
    padding: 1rem;
  }

  .calendar-day {
    font-size: 0.85rem;
  }

  .timeslots-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .calendar-weekdays span {
    font-size: 0.65rem;
  }

  .calendar-day {
    font-size: 0.8rem;
  }

  .timeslots-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   VISION PAGE
   ============================================ */

/* Vision Hero */
.vision-hero {
  padding: 80px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.vision-hero h1 {
  margin-bottom: 20px;
}

.vision-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.vision-hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.vision-hero .hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Vision Problems Grid */
.vision-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vision-problem-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.vision-problem-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.vision-problem-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-problem-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.vision-problem-card h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.vision-problem-card p {
  font-size: 0.95rem;
}

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

@media (max-width: 640px) {
  .vision-problems-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision How It Works (3 steps) */
.vision-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.vision-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.vision-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.vision-step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}

.vision-step h4 {
  margin-bottom: 12px;
}

.vision-step p {
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .vision-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vision-steps::before {
    display: none;
  }
}

/* Vision Before/After (standalone section) */
.vision-before-after-standalone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vision-ba-item {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  aspect-ratio: 4 / 3;
}

.vision-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vision-ba-label.after {
  background: var(--orange);
}

.vision-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .vision-before-after-standalone {
    flex-direction: column;
    gap: 16px;
  }

  .vision-ba-arrow {
    transform: rotate(90deg);
  }
}

/* Vision Psychology Cards */
.vision-psych-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vision-psych-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-psych-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.vision-psych-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vision-psych-card:hover::before {
  transform: scaleX(1);
}

.vision-psych-card .psych-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vision-psych-card .psych-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.vision-psych-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.vision-psych-card p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vision-psych-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.recommended {
  border: 2px solid var(--orange);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-badge {
  display: block;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

.pricing-card-header {
  padding: 40px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-card.recommended .pricing-card-header {
  padding-top: 32px;
}

.pricing-tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 8px;
}

.pricing-setup {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--medium-gray);
}

.pricing-vis {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-top: 8px;
}

.pricing-card-features {
  padding: 24px 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-feature .check {
  stroke: #22C55E;
}

.pricing-feature .dash {
  stroke: var(--light-gray);
}

.pricing-feature.disabled {
  color: var(--light-gray);
}

.pricing-card-cta {
  padding: 16px 32px 32px;
}

.pricing-card-cta .btn {
  display: block;
  text-align: center;
  width: 100%;
}

.pricing-info-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  border-radius: var(--radius-lg);
}

.pricing-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.pricing-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-info-text strong {
  color: var(--white);
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .pricing-info-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}

/* Pricing Learn More Link */
.pricing-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.pricing-learn-more:hover {
  gap: 10px;
}

.pricing-learn-more svg {
  transition: transform 0.2s ease;
}

.pricing-learn-more:hover svg {
  transform: translateX(2px);
}

/* Pricing Modal */
.pricing-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pricing-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pricing-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.pricing-modal-overlay.active .pricing-modal {
  transform: translateY(0);
}

.pricing-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px 0;
}

.pricing-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.pricing-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.15s ease;
}

.pricing-modal-close:hover {
  color: var(--dark);
}

.pricing-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.pricing-modal-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-modal-feature {
  padding: 16px;
  border-radius: var(--radius-md);
  background: #f8f9fa;
  border: 1px solid #eee;
}

.pricing-modal-feature--highlight {
  background: #fff8f0;
  border-color: rgba(247, 148, 29, 0.25);
}

.pricing-modal-feature--disabled {
  opacity: 0.5;
}

.pricing-modal-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pricing-modal-feature-header svg {
  flex-shrink: 0;
}

.pricing-modal-feature-header .check {
  stroke: #22c55e;
}

.pricing-modal-feature-header .dash {
  stroke: #9ca3af;
}

.pricing-modal-feature-header strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.pricing-modal-feature p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 30px;
}

.pricing-modal-upgrade-hint {
  margin-top: 20px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--dark), #2A2A4A);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.pricing-modal-upgrade-hint a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.pricing-modal-upgrade-hint a:hover {
  text-decoration: underline;
}

.pricing-modal-footer {
  padding: 20px 32px 28px;
  text-align: center;
  border-top: 1px solid #eee;
}

.pricing-modal-footer .btn {
  min-width: 200px;
}

@media (max-width: 640px) {
  .pricing-modal {
    max-height: 90vh;
  }

  .pricing-modal-header {
    padding: 20px 20px 0;
  }

  .pricing-modal-body {
    padding: 16px 20px;
  }

  .pricing-modal-footer {
    padding: 16px 20px 20px;
  }

  .pricing-modal-header h3 {
    font-size: 1.25rem;
  }
}

/* Enterprise banner */
.pricing-enterprise {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-enterprise::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-enterprise-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.pricing-enterprise-text {
  flex: 1;
}

.pricing-enterprise-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #e8850a);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.pricing-enterprise h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pricing-enterprise p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
}

.pricing-enterprise-cta {
  text-align: center;
  flex-shrink: 0;
}

.pricing-enterprise-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-enterprise-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 4px;
  margin-bottom: 20px;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.recommended {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .pricing-enterprise {
    padding: 32px 24px;
  }

  .pricing-enterprise-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .pricing-enterprise p {
    max-width: 100%;
  }
}

/* Add-On Cards */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.addon-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
}

.addon-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.addon-card .addon-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.addon-card .addon-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.addon-card h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.addon-card .addon-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.addon-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.addon-card .service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.addon-card .service-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }
}

/* ROI Stats */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.roi-stat {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.roi-stat:hover {
  box-shadow: var(--shadow-lg);
}

.roi-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 12px;
}

.roi-stat h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.roi-stat p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

/* ROI Calculator */
.roi-calculator {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.roi-calc-inputs {
  padding: 40px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-bottom: 1px solid var(--light-gray);
}

.roi-calc-field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.roi-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: var(--transition);
  max-width: 280px;
}

.roi-input-wrapper:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.roi-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-right: 4px;
}

.roi-input-wrapper input {
  border: none;
  background: transparent;
  padding: 14px 8px;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  outline: none;
}

.roi-input-wrapper input::placeholder {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Hide number input spinners */
.roi-input-wrapper input::-webkit-outer-spin-button,
.roi-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.roi-input-wrapper input[type=number] {
  -moz-appearance: textfield;
}

.roi-tier-selector {
  display: flex;
  gap: 12px;
}

.roi-tier-btn {
  flex: 1;
  padding: 16px 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--off-white);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font-family: inherit;
}

.roi-tier-btn:hover {
  border-color: var(--orange);
}

.roi-tier-btn.active {
  border-color: var(--orange);
  background: rgba(247, 148, 29, 0.08);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.roi-tier-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.roi-tier-price {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.roi-tier-btn.active .roi-tier-name {
  color: var(--orange);
}

.roi-calc-results {
  padding: 32px 40px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.roi-result-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  text-align: center;
}

.roi-result-card.highlight {
  background: linear-gradient(135deg, var(--orange), #e8850a);
  color: var(--white);
  grid-column: 1 / -1;
  padding: 32px;
}

.roi-result-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.8;
}

.roi-result-card.highlight .roi-result-label {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.roi-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.roi-result-value.green {
  color: #16a34a;
}

.roi-result-card.highlight .roi-result-value {
  color: var(--white);
  font-size: 3rem;
}

.roi-result-sub {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.roi-calc-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 20px;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .roi-calc-inputs {
    padding: 28px 24px 24px;
  }

  .roi-tier-selector {
    flex-direction: column;
  }

  .roi-calc-results {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .roi-result-card.highlight {
    grid-column: auto;
  }

  .roi-input-wrapper {
    max-width: 100%;
  }
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.industry-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--medium-gray);
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT BANNER STRIP — Full-width dark gradient identity bar
   ═══════════════════════════════════════════════════════════════════ */

.product-banner {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2B55 60%, #1A1A2E 100%);
  padding: 64px 0;
  text-align: center;
  margin-top: 72px; /* push below fixed nav */
  border-bottom: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}

/* subtle radial glow behind content */
.product-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(247, 148, 29, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.product-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.product-banner-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.2), rgba(247, 148, 29, 0.1));
  border: 1.5px solid rgba(247, 148, 29, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-banner-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
}

.product-banner-name {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.product-banner-tag {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .product-banner {
    padding: 48px 0;
    margin-top: 64px;
  }
  .product-banner-name {
    font-size: 1.75rem;
  }
  .product-banner-tag {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT PAGES — Generic (engage, capture, funnels, reputation, revive, custom)
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.product-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.product-hero h1 { margin-bottom: 20px; }
.product-hero-sub {
  font-size: 1.2rem;
  color: var(--medium-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.product-hero .hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problems Grid */
.product-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-problem-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.product-problem-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.product-problem-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-problem-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.product-problem-card h4 { margin-bottom: 10px; font-size: 1.15rem; }
.product-problem-card p { font-size: 0.95rem; }

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

/* Steps */
.product-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.product-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}
.product-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.product-step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}
.product-step h4 { margin-bottom: 10px; }
.product-step p { font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

@media (max-width: 768px) {
  .product-steps { grid-template-columns: 1fr; gap: 40px; }
  .product-steps::before { display: none; }
}

/* Features Grid */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.product-feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.product-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.product-feature-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.product-feature-card p { font-size: 0.92rem; margin: 0; }

@media (max-width: 768px) {
  .product-features-grid { grid-template-columns: 1fr; }
}

/* Pricing Compare (standalone vs bundled) */
.product-pricing-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.product-pricing-option {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}
.product-pricing-option:hover { box-shadow: var(--shadow-xl); }
.product-pricing-option.recommended {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-lg);
}
.product-pricing-header {
  padding: 32px 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}
.product-pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 8px;
}
.product-pricing-setup {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 8px;
}
.product-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.product-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--medium-gray);
}
.product-pricing-body { padding: 24px 28px; }
.product-pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--dark-gray);
}
.product-pricing-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.product-pricing-cta { padding: 16px 28px 28px; text-align: center; }
.product-pricing-cta .btn { width: 100%; }

/* Contact Us pricing card (Engage, Custom) */
.product-pricing-contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--dark) 0%, #2A2A4A 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.product-pricing-contact h3 { color: var(--white); margin-bottom: 12px; }
.product-pricing-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .product-pricing-compare { grid-template-columns: 1fr; max-width: 400px; }
  .product-hero { padding: 60px 0 40px; }
}


/* ═══════════════════════════════════════════════════════════════════
   GET STARTED — Purchase Flow (get-started.html)
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.gs-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a42 100%);
  padding: 100px 0 50px;
  text-align: center;
  color: var(--white);
}

.gs-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gs-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* Progress Bar */
.gs-progress-container {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.gs-progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.gs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #e8850a);
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 10%;
}

.gs-steps-indicator {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

.gs-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gs-step-dot.active {
  background: var(--orange);
  color: var(--white);
}

.gs-step-dot.completed {
  background: #22c55e;
  color: var(--white);
}

/* Main Section */
.gs-main {
  padding: 40px 0 80px;
  min-height: 60vh;
}

.gs-panel {
  max-width: 900px;
  margin: 0 auto;
  animation: gsFadeIn 0.3s ease;
}

@keyframes gsFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-panel h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.gs-panel-subtitle {
  color: #64748b;
  margin-bottom: 32px;
  font-size: 1rem;
}

.gs-centered {
  text-align: center;
}

/* Tier Grid */
.gs-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.gs-tier-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.gs-tier-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gs-tier-card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2), var(--shadow-md);
}

.gs-tier-card.gs-recommended {
  border-color: var(--orange);
}

.gs-tier-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gs-tier-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.gs-tier-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.gs-price-setup {
  font-size: 0.85rem;
  color: #94a3b8;
}

.gs-price-monthly {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.gs-price-monthly small {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
}

.gs-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.gs-tier-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #475569;
  position: relative;
  padding-left: 24px;
}

.gs-tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.gs-tier-btn {
  width: 100%;
}

.gs-alt-cta {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

.gs-alt-cta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.gs-alt-cta a:hover {
  text-decoration: underline;
}

/* Questionnaire Form */
.gs-form-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.gs-form-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.gs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.gs-form-row:last-child {
  margin-bottom: 0;
}

.gs-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-form-group.gs-full-width {
  grid-column: 1 / -1;
}

.gs-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.gs-form-group input,
.gs-form-group select,
.gs-form-group textarea {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.gs-form-group input:focus,
.gs-form-group select:focus,
.gs-form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
}

.gs-other-input {
  margin-top: 8px;
}

.gs-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gs-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
}

.gs-radio input[type="radio"] {
  accent-color: var(--orange);
}

.gs-color-picker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-color-picker input[type="color"] {
  width: 44px;
  height: 44px;
  padding: 2px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gs-color-picker span {
  font-size: 0.9rem;
  color: #64748b;
  font-family: monospace;
}

.gs-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

/* Add-On Grid */
.gs-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.gs-addon-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.gs-addon-card.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2);
}

.gs-addon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gs-addon-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.gs-addon-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.gs-addon-pricing {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* Toggle Switch */
.gs-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.gs-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gs-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e1;
  border-radius: 13px;
  transition: all 0.3s ease;
}

.gs-toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gs-toggle input:checked + .gs-toggle-slider {
  background: var(--orange);
}

.gs-toggle input:checked + .gs-toggle-slider::before {
  transform: translateX(22px);
}

/* Order Summary */
.gs-summary-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.gs-summary-table {
  width: 100%;
  border-collapse: collapse;
}

.gs-summary-table th {
  background: #f8fafc;
  padding: 12px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e2e8f0;
}

.gs-summary-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.gs-summary-total td {
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
  font-size: 1rem;
  color: var(--dark);
}

.gs-summary-notes {
  padding: 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.gs-summary-notes p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 8px;
}

.gs-summary-notes p:last-child {
  margin-bottom: 0;
}

/* Loading / Success / Error States */
.gs-loading-state {
  padding: 60px 20px;
}

.gs-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e2e8f0;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: gsSpin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes gsSpin {
  to { transform: rotate(360deg); }
}

.gs-success-icon,
.gs-error-icon {
  margin-bottom: 20px;
}

/* Next Steps */
.gs-next-steps {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
}

.gs-next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.gs-next-step:last-child {
  border-bottom: none;
}

.gs-next-num {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.gs-next-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}

.gs-next-step p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.gs-confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .gs-hero h1 {
    font-size: 1.8rem;
  }

  .gs-tier-grid,
  .gs-addon-grid {
    grid-template-columns: 1fr;
  }

  .gs-form-row {
    grid-template-columns: 1fr;
  }

  .gs-form-actions {
    flex-wrap: wrap;
  }

  .gs-summary-table th:nth-child(3),
  .gs-summary-table td:nth-child(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .gs-hero {
    padding: 80px 0 40px;
  }

  .gs-hero h1 {
    font-size: 1.5rem;
  }

  .gs-panel h2 {
    font-size: 1.4rem;
  }

  .gs-confirmation-actions {
    flex-direction: column;
  }
}

/* ── Audit Page ──────────────────────────────────────────────── */

.audit-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4A 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
}

.audit-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.15;
}

.audit-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.audit-hero .btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

.audit-trust {
  background: var(--off-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
}

.audit-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.audit-trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  margin-bottom: 8px;
}

.audit-trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.audit-trust-item span {
  font-size: 0.85rem;
  color: #666;
}

.audit-form-section {
  padding: 60px 0 80px;
  background: var(--white);
}

.audit-score-banner {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4A 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.audit-score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  border: 6px solid;
}

.audit-score-circle.score-red {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
}

.audit-score-circle.score-amber {
  border-color: #F59E0B;
  background: rgba(245, 158, 11, 0.15);
}

.audit-score-circle.score-green {
  border-color: #22C55E;
  background: rgba(34, 197, 94, 0.15);
}

.audit-score-banner h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.audit-score-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.audit-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.audit-cat-card {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.audit-cat-card.open {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.audit-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.audit-cat-score {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.audit-cat-score.score-red {
  background: #EF4444;
}

.audit-cat-score.score-amber {
  background: #F59E0B;
}

.audit-cat-score.score-green {
  background: #22C55E;
}

.audit-cat-info {
  flex: 1;
}

.audit-cat-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.audit-cat-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

.audit-cat-bar-wrap {
  flex: 0 0 120px;
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.audit-cat-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.audit-cat-bar.bar-red {
  background: #EF4444;
}

.audit-cat-bar.bar-amber {
  background: #F59E0B;
}

.audit-cat-bar.bar-green {
  background: #22C55E;
}

.audit-cat-arrow {
  font-size: 1.2rem;
  color: #999;
  transition: transform 0.2s ease;
}

.audit-cat-card.open .audit-cat-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.audit-cat-body {
  padding: 0 20px 20px;
  display: none;
}

.audit-cat-card.open .audit-cat-body {
  display: block;
}

.audit-cat-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px;
}

.audit-cat-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.audit-cat-body a:hover {
  text-decoration: underline;
}

.audit-recs-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--dark);
}

.audit-cta-section {
  text-align: center;
  padding: 32px 0 0;
  border-top: 1px solid var(--light-gray);
  margin-top: 32px;
}

.audit-cta-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.audit-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ge-checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ge-checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.ge-checkbox-item:hover {
  border-color: var(--orange);
}

.ge-checkbox-item.selected {
  border-color: var(--orange);
  background: rgba(247, 148, 29, 0.05);
}

.ge-checkbox-item .ge-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.ge-checkbox-item.selected .ge-check-box {
  background: var(--orange);
  border-color: var(--orange);
}

.ge-checkbox-item.selected .ge-check-box::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.ge-checkbox-item span {
  font-weight: 500;
  color: var(--dark);
}

.ge-btn-next-wrap {
  margin-top: 20px;
  text-align: right;
}

.ge-btn-next-main {
  background: linear-gradient(135deg, var(--orange), #e8850a);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.ge-btn-next-main:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ge-btn-next-main:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ge-pain-point {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--off-white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 80px;
  transition: var(--transition);
}

.ge-pain-point:focus {
  border-color: var(--orange);
  background: var(--white);
  outline: none;
}

@media (max-width: 768px) {
  .audit-hero h1 {
    font-size: 2rem;
  }

  .audit-hero {
    padding: 80px 0 40px;
  }

  .audit-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audit-cat-bar-wrap {
    display: none;
  }

  .audit-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
