/* ============================================
   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%;
}

.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);
}

/* 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;
  }
}

/* ============================================
   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: 6px 16px;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.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: rgba(247, 148, 29, 0.2);
}

.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%);
}

.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-demo-iframe {
  width: 100%;
  height: 1000px;
  border: none;
  display: block;
  overflow: hidden;
}

.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: 1400px;
  }
}

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

/* 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);
  }
}
