/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://use.typekit.net/qlf8jee.css'); /* Helvetica Now font kit */

/* CSS Custom Properties - Updated Brand Colors (2025) */
:root {
  --dark: #0B1320;
  --accent: #00B294;
  --secondary: #FFB703;
  --surface: #FFFFFF;
  --muted-text: #6B7280;
  --neutral-light: #E6EEF4;
  
  /* Legacy variables for layout.css compatibility */
  --cc-white: #FFFFFF;
  --cc-charcoal: #0B1320;
  --cc-gray: #6B7280;
  --cc-silver: #E6EEF4;
  --cc-navy: #0B1320;
  
  /* Fluid Typography Scale */
  --fs-h1: clamp(2.5rem, 5vw + 1rem, 3.5rem);  /* 40-56px */
  --fs-h2: clamp(2rem, 4vw + 1rem, 2.75rem);   /* 32-44px */
  --fs-h3: clamp(1.5rem, 3vw + 1rem, 2rem);    /* 24-32px */
  --fs-h4: clamp(1.25rem, 2vw + 1rem, 1.5rem); /* 20-24px */
  --fs-large: clamp(1.125rem, 1.5vw + 1rem, 1.25rem); /* 18-20px */
  --fs-body: clamp(1rem, 1vw + 0.75rem, 1.125rem);    /* 16-18px */
  --fs-small: clamp(0.875rem, 0.75vw + 0.75rem, 1rem); /* 14-16px */
  --fs-caption: clamp(0.75rem, 0.5vw + 0.75rem, 0.875rem); /* 12-14px */
  
  /* Line Heights */
  --lh-heading: clamp(1.1, 1.1 + 0.5vw, 1.2);
  --lh-body: clamp(1.4, 1.4 + 0.5vw, 1.6);
  
  /* Spacing System */
  --spacing-micro: clamp(0.5rem, 1vw, 0.75rem);
  --spacing-small: clamp(1rem, 2vw, 1.5rem);
  --spacing-medium: clamp(1.5rem, 3vw, 2rem);
  --spacing-large: clamp(2rem, 4vw, 3rem);
  --spacing-section: clamp(3rem, 6vw, 5rem);
  
  /* Container Padding */
  --container-padding-mobile: 24px;
  --container-padding-tablet: 32px;
  --container-padding-desktop: 64px;
  
  /* Shadows */
  --shadow-card: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-premium: 0 20px 60px rgba(0, 178, 148, 0.08);
  --shadow-premium-hover: 0 20px 60px rgba(0, 178, 148, 0.15);

  /* Sophisticated Card & Element Gradients */
  --bg-gradient-primary: linear-gradient(135deg, rgba(15, 23, 36, 0.95) 0%, rgba(0, 178, 148, 0.85) 100%);
  --bg-gradient-secondary: linear-gradient(135deg, rgba(10, 18, 30, 0.9) 0%, rgba(0, 158, 130, 0.8) 100%);
  --bg-gradient-tertiary: linear-gradient(135deg, rgba(12, 20, 32, 0.92) 0%, rgba(0, 168, 140, 0.82) 100%);
  --bg-gradient-quaternary: linear-gradient(135deg, rgba(8, 15, 28, 0.88) 0%, rgba(0, 148, 120, 0.78) 100%);
  
  /* Premium Card Gradients */
  --card-gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
  --card-gradient-hero: linear-gradient(135deg, rgba(15, 23, 36, 0.95), rgba(0, 178, 148, 0.85));
  
  /* Radial Gradient Overlays */
  --radial-accent: radial-gradient(circle at 20% 50%, rgba(0, 178, 148, 0.2) 0%, transparent 50%);
  --radial-secondary: radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.15) 0%, transparent 50%);
  --radial-dark: radial-gradient(circle at 40% 90%, rgba(15, 23, 36, 0.25) 0%, transparent 60%);

  /* Core Variables */
  --primary-color: var(--accent);
  --secondary-color: var(--secondary);
  --text-color: var(--dark);
  --light-bg: var(--neutral-light);
  --shadow: var(--shadow-card);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--surface);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-display: swap;
  line-height: var(--lh-heading);
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); color: var(--dark); }
h2 { font-size: var(--fs-h2); color: var(--dark); }
h3 { font-size: var(--fs-h3); color: var(--dark); }
h4 { font-size: var(--fs-h4); color: var(--dark); }

/* Section Title Consistency */
.section-title {
  text-align: center;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Subtitle Consistency */
.section-subtitle {
  text-align: center;
  color: var(--muted-text);
  font-size: var(--fs-large);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Paragraph & Text Consistency */
p {
  color: var(--dark);
  margin: 0 0 1rem 0;
  line-height: var(--lh-body);
}

/* Text utility classes for consistency */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--muted-text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--fs-body);
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #00B294 0%, #008577 100%);
  color: var(--surface);
  border-color: var(--accent);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 178, 148, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #008577 0%, #00B294 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 178, 148, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  background-color: var(--dark);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 36, 0.2);
}

.btn-secondary-enhanced {
  background: rgba(255, 255, 255, 0.9);
  color: #0B1320;
  border: 2px solid #0B1320;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-enhanced:hover {
  background: #0B1320;
  color: white;
  border-color: #0B1320;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 19, 32, 0.3);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.2rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 15000;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5);
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-brand .logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

/* Pulsating Nav Button */
.nav-links .btn-primary {
  animation: nav-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0, 178, 148, 0.3);
}

@keyframes nav-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 178, 148, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 178, 148, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 178, 148, 0.3);
  }
}

/* Hero Section */
.hero {
  background: var(--surface);
  color: var(--dark);
  padding: calc(var(--spacing-section) + 3rem) 0 calc(var(--spacing-section) + 3rem) 0;
  margin-top: 0;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 178, 148, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.float-element:nth-child(3) { top: 30%; right: 25%; animation-delay: 4s; }
.float-element:nth-child(4) { bottom: 30%; left: 20%; animation-delay: 1s; }
.float-element:nth-child(5) { bottom: 50%; right: 10%; animation-delay: 3s; }

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

/* Page Load Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from { 
    opacity: 0; 
    transform: translateX(50px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes barGrow {
  from { height: 0 !important; }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 1s ease-out 0.3s both;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-bar {
  animation: barGrow 1.5s ease-out 1s both;
}

.pulse-on-hover:hover {
  animation: pulse 0.6s ease-in-out;
}

.pulse-node {
  animation: pulse 2s ease-in-out infinite;
}

.main-hub {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: white;
  font-weight: 600;
  animation: pulse 3s ease-in-out infinite;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
  margin: 0;
  color: var(--dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted-text);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f3f4f6;
  color: var(--dark);
}

/* Plan Mode Modal Styles */
.plan-modal-content {
  max-width: 600px;
}

.plan-form {
  padding: 2rem;
}

.plan-form .form-group {
  margin-bottom: 1.5rem;
}

.plan-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.plan-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
}

.tool-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.tool-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  margin-bottom: 0;
}

#planResult {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.plan-cta {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ Modal Styles */
.faq-modal-content {
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.faq-container {
  margin: 1.5rem 0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0;
}

.faq-cta {
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid #e2e8f0;
}

.faq-cta p {
  margin-bottom: 1rem;
  color: var(--muted-text);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 178, 148, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 178, 148, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 178, 148, 0.5);
  }
}



.hero-trust-notes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.badge-icon {
  font-size: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-large);
  color: var(--muted-text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 90%;
}

.hero-tagline {
  margin: 2.5rem 0 2rem 0;
  text-align: left;
  clear: both;
}

.tagline-text {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 178, 148, 0.3);
}

.tagline-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  border-radius: inherit;
  z-index: -1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(0, 178, 148, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 178, 148, 0.2);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--muted-text);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 178, 148, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-hero {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon {
  font-size: 1rem;
}

.hero-trust-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-text);
  font-size: var(--fs-small);
}

.trust-icon {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Visual - Transformation Portal */
.transformation-portal {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(0, 178, 148, 0.6);
  animation-duration: 25s;
}

.ring-2 {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-color: rgba(255, 183, 3, 0.7);
  animation-duration: 35s;
  animation-direction: reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-color: rgba(0, 178, 148, 0.8);
  animation-duration: 15s;
}

.portal-center {
  position: relative;
  width: 200px;
  height: 200px;
  background: rgba(0, 178, 148, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(0, 178, 148, 0.3);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.portal-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 178, 148, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.portal-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.portal-logo-img {
  height: 80px;
  width: auto;
  opacity: 0.9;
  animation: logo-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0, 178, 148, 0.3));
  display: block;
  margin: auto;
}

@keyframes logo-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(0, 178, 148, 0.3));
  }
  50% { 
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(0, 178, 148, 0.6));
  }
}

.neural-network {
  position: relative;
  width: 120px;
  height: 120px;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: node-pulse 2s ease-in-out infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2 { top: 30%; right: 10%; animation-delay: 0.4s; }
.node-3 { bottom: 30%; right: 10%; animation-delay: 0.8s; }
.node-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.node-5 { top: 50%; left: 10%; transform: translateY(-50%); animation-delay: 1.6s; }

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: data-flow 2s ease-in-out infinite;
}

.conn-1 {
  top: 15%; left: 40%; width: 30%; transform: rotate(30deg);
  animation-delay: 0.2s;
}
.conn-2 {
  top: 50%; left: 20%; width: 40%; transform: rotate(-45deg);
  animation-delay: 0.6s;
}
.conn-3 {
  bottom: 20%; left: 45%; width: 35%; transform: rotate(60deg);
  animation-delay: 1s;
}
.conn-4 {
  top: 60%; right: 20%; width: 25%; transform: rotate(-30deg);
  animation-delay: 1.4s;
}

.transformation-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  animation: float-particle 8s ease-in-out infinite;
}

.p-1 { top: 20%; left: 15%; animation-delay: 0s; }
.p-2 { top: 60%; left: 85%; animation-delay: 1.5s; }
.p-3 { top: 80%; left: 20%; animation-delay: 3s; }
.p-4 { top: 10%; right: 20%; animation-delay: 4.5s; }
.p-5 { bottom: 20%; left: 70%; animation-delay: 6s; }
.p-6 { top: 40%; left: 5%; animation-delay: 7.5s; }

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

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1); 
    box-shadow: 0 0 30px rgba(0, 178, 148, 0.4);
  }
}

@keyframes node-pulse {
  0%, 100% { 
    opacity: 0.6; 
    transform: scale(1); 
    box-shadow: 0 0 10px var(--accent);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.3); 
    box-shadow: 0 0 20px var(--accent), 0 0 30px rgba(0, 178, 148, 0.5);
  }
}

@keyframes data-flow {
  0% { 
    opacity: 0; 
    transform: scaleX(0);
  }
  50% { 
    opacity: 1; 
    transform: scaleX(1);
  }
  100% { 
    opacity: 0; 
    transform: scaleX(0);
  }
}

@keyframes float-particle {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.4; 
  }
  25% { 
    transform: translateY(-30px) rotate(90deg) scale(1.2); 
    opacity: 0.9; 
  }
  50% { 
    transform: translateY(-50px) rotate(180deg) scale(1.4); 
    opacity: 1; 
    box-shadow: 0 0 10px var(--secondary);
  }
  75% { 
    transform: translateY(-25px) rotate(270deg) scale(1.1); 
    opacity: 0.8; 
  }
}

.workflow-animation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workflow-node {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.workflow-arrow {
  font-size: 1.2rem;
  color: var(--secondary);
}

.animate-flow {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.analytics-visual {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 40px;
}

.chart-bar {
  width: 12px;
  background: linear-gradient(to top, var(--accent), var(--secondary));
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-out infinite alternate;
}

@keyframes growBar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.integration-visual {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
}

.system-node {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.system-node.center {
  background: var(--accent);
  color: white;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.showcase-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  margin: 0;
}

/* Trust Bar */
.trust-bar {
  padding: 3rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--neutral-light);
}

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

.trust-content h3 {
  color: var(--dark);
  margin-bottom: 2rem;
  font-size: var(--fs-h3);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral-light);
  border-radius: 8px;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.trust-logo {
  font-weight: 700;
  color: var(--dark);
  font-size: var(--fs-h4);
  margin-bottom: 0.5rem;
}

.trust-result {
  color: var(--muted-text);
  font-size: var(--fs-small);
  font-weight: 500;
}

/* Client Success Stories */
.success-stories {
  padding: 4rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.success-content {
  text-align: center;
  margin-bottom: 3rem;
}

.success-content h3 {
  font-size: var(--fs-h2);
  color: #0F1724;
  margin-bottom: 0.75rem;
}

.success-subtitle {
  color: var(--muted-text);
  font-size: var(--fs-large);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.success-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 178, 148, 0.1);
  box-shadow: 0 8px 32px rgba(15, 23, 36, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.success-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(0, 178, 148, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.success-metrics {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.metric-label {
  font-size: var(--fs-small);
  color: var(--muted-text);
  margin-top: 0.25rem;
  text-align: center;
}

.testimonial {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: #0F1724;
  font-style: italic;
  line-height: 1.6;
  font-size: var(--fs-body);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.client-details h4 {
  color: var(--dark);
  margin: 0 0 0.25rem 0;
  font-size: var(--fs-body);
  font-weight: 600;
}

.client-details .company {
  color: var(--muted-text);
  font-size: var(--fs-small);
  margin: 0;
}

/* Sections */
.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section + .section {
  margin-top: 0;
}

.bg-light {
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light p,
.bg-light span,
.bg-light li {
  color: #0F1724 !important;
}

.bg-light .section-title {
  color: #0F1724 !important;
}

.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(15, 23, 36, 0.95) 100%);
  color: var(--surface);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  font-weight: 600;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.bg-dark .section-title {
  color: var(--surface);
}

/* Services Container */
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Service Cards */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
}

/* Desktop: Always 4 columns */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem;
  }
}

/* Tablet: 4 columns with smaller gap */
@media (max-width: 1023px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.75rem;
  }
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

.service-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  height: auto;
  min-width: 0;
  grid-column: span 1;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card.expandable {
  cursor: pointer;
}

.service-card.expandable:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15), 0 0 0 1px rgba(0, 178, 148, 0.1);
  border-color: var(--accent);
}

.card-front, .card-back {
  display: flex;
  flex-direction: column;
}

.card-back {
  display: none;
}

.service-card.expandable:hover .card-front {
  display: none;
}

.service-card.expandable:hover .card-back {
  display: flex;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent);
  transition: all 0.3s ease;
  transform-origin: center;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-front h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.service-card:hover .card-front h3 {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-back h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.card-front p {
  color: var(--muted-text);
  font-size: 0.95rem;
  line-height: 1.5;
  line-height: 1.6;
  margin-bottom: auto;
}

.expand-hint {
  color: var(--accent);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-top: 1rem;
}

.card-back ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.card-back li {
  margin-bottom: 0.75rem;
  color: var(--muted-text);
  line-height: 1.4;
  font-size: var(--fs-small);
  padding-left: 1rem;
  margin-left: 0;
  text-indent: 0;
  border-left: 2px solid var(--accent);
  display: block;
}

.card-back li strong {
  color: var(--accent);
  font-weight: 600;
}

.card-back h3 {
  margin: 0 0 1rem 0;
  padding: 0;
  text-align: left;
}

.service-result {
  background: linear-gradient(135deg, var(--accent) 0%, #00b4a0 100%);
  color: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  font-size: var(--fs-small);
  box-shadow: 0 2px 8px rgba(0, 168, 150, 0.2);
}

/* Education Section */
.education-section {
  text-align: center;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.education-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.education-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.education-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.education-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.education-card:hover .education-icon {
  transform: scale(1.1) rotate(5deg);
}

.education-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: var(--fs-h4);
  transition: all 0.3s ease;
}

.education-card:hover h3 {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.education-card p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.education-card ul {
  text-align: left;
  color: var(--muted-text);
  line-height: 1.6;
}

.education-card ul li {
  margin-bottom: 0.5rem;
}

.education-cta {
  background: #0F1724;
  color: var(--surface);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.education-cta h3 {
  color: var(--surface);
  margin-bottom: 2rem;
  font-size: var(--fs-h3);
}

/* Why Choose Section */
.why-choose-section {
  text-align: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.approach-card:hover .approach-icon {
  transform: scale(1.1) rotate(5deg);
}

.approach-card h3 {
  color: var(--surface);
  margin-bottom: 1rem;
  font-size: var(--fs-h4);
}

.approach-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.approach-highlight {
  background: var(--accent);
  color: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
}

.approach-highlight h3 {
  color: var(--surface);
  margin-bottom: 1rem;
  font-size: var(--fs-h3);
}

.approach-highlight p {
  color: var(--surface);
  font-size: var(--fs-large);
  line-height: 1.6;
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.metric-text {
  color: var(--muted-text);
}

/* Agent Diagram */
.agent-diagram {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.human-team, .agent-team, .output-systems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agent-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.human-node, .agent-node, .output-node {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.agent-node h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.agent-node p {
  color: var(--muted-text);
  font-size: var(--fs-small);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.process-step p {
  color: var(--muted-text);
}

/* Case Study Preview */
.case-study-preview {
  padding: var(--spacing-section) 0;
  background: var(--surface);
}

.case-study-card {
  background: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.case-study-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.case-study-card p {
  color: var(--muted-text);
  margin-bottom: 2rem;
  font-size: var(--fs-large);
}

.case-study-card blockquote {
  font-style: italic;
  color: var(--dark);
  margin: 2rem 0;
  font-size: var(--fs-large);
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  text-align: left;
}

/* Case Study Highlight */
.case-study-highlight {
  padding: var(--spacing-section) 0;
  color: var(--surface);
}

.case-study-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.case-study-content h2 {
  color: var(--surface);
  margin-bottom: 3rem;
  font-size: var(--fs-h2);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 3rem 0;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
}

.case-study-content blockquote {
  font-size: var(--fs-large);
  font-style: italic;
  color: var(--surface);
  margin: 3rem 0;
  line-height: 1.6;
}

.case-study-content .btn {
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-section) 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 2rem;
  color: var(--surface);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, 
    #0F1724 0%, 
    #1a2332 50%, 
    #0F1724 100%);
  color: var(--surface);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 178, 148, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 183, 3, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-contact,
.footer-links,
.footer-brand {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-contact,
  .footer-links,
  .footer-brand {
    padding: 1.5rem;
  }
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
}

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

.footer-brand p {
  color: var(--muted-text);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-brand h4 {
  color: var(--surface);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  border-bottom: 2px solid rgba(0, 178, 148, 0.3);
  padding-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a,
.footer-contact p {
  color: var(--muted-text);
  text-decoration: none;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(0, 178, 148, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 178, 148, 0.1);
  transform: translateX(5px);
}

.contact-label {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info {
  color: var(--surface);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 178, 148, 0.5);
}

.footer-links a:hover {
  color: var(--accent);
}

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

.footer-bottom p {
  color: var(--muted-text);
}

.footer-bottom a {
  color: var(--muted-text);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-light);
    text-align: center;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .navbar {
    position: sticky;
    top: 0;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .before-after {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .service-card {
    height: auto;
    min-height: 280px;
  }

  .transformation-portal {
    width: 300px;
    height: 300px;
  }

  .portal-center {
    width: 120px;
    height: 120px;
  }

  .neural-network {
    width: 80px;
    height: 80px;
  }
  
  .page-hero {
    padding: calc(var(--spacing-section) + 60px) 0 var(--spacing-section) 0;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* Page Hero Styles */
.page-hero {
  padding: calc(var(--spacing-section) + 120px + 2.5rem) 0 calc(var(--spacing-section) + 40px) 0;
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
}

.page-hero h1 {
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.page-hero .hero-subtitle {
  color: var(--muted-text);
  font-size: var(--fs-large);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Services Detailed Grid */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.service-detailed-card {
  background: var(--card-gradient-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

.service-detailed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), #00d4aa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-detailed-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-detailed-card:hover {
  box-shadow: var(--shadow-premium-hover);
  transform: translateY(-12px);
  border-color: rgba(0, 178, 148, 0.3);
}

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

.service-detailed-card:hover::after {
  opacity: 1;
}

.service-detailed-card > * {
  position: relative;
  z-index: 1;
}

.service-header {
  background: var(--neutral-light);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-header h3 {
  color: var(--dark);
  margin: 0;
}

.service-timeline {
  background: var(--accent);
  color: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.service-content {
  padding: 2rem;
}

.service-description {
  margin-bottom: 2rem;
}

.service-deliverables h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-deliverables ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-deliverables li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-deliverables li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-pricing {
  margin: 2rem 0;
}

.price-range {
  background: var(--secondary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Pricing Models */
.pricing-explainer {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-model {
  background: var(--surface);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-model h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-example {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

/* Team Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.team-member-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.team-member-photo {
  height: 300px;
  background: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 2rem;
}

.team-member-info h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-member-info h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio-short {
  color: var(--muted-text);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio-medium {
  color: var(--muted-text);
  line-height: 1.6;
}

.team-cta {
  text-align: center;
  background: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
}

.team-cta h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.team-cta p {
  color: var(--muted-text);
  margin-bottom: 2rem;
}

/* Mission & Values */
.mission-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.core-approach {
  margin-bottom: 4rem;
}

.core-approach h2 {
  color: var(--dark);
  margin-bottom: 2rem;
}

.large-text {
  font-size: var(--fs-large);
  color: var(--muted-text);
  line-height: 1.6;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}

.mission-statement {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mission-statement:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 178, 148, 0.15);
}

.mission-statement:hover::before {
  transform: scaleX(1);
}

.mission-statement h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-statement p {
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for mission values grid */
@media (max-width: 1024px) {
  .mission-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.value-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

/* Use Cases */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.use-case-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
  transform: translateY(-8px);
}

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

.use-case-header {
  background: var(--neutral-light);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.use-case-header h3 {
  color: var(--dark);
  margin: 0;
}

.use-case-industry {
  background: var(--accent);
  color: var(--surface);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.use-case-content {
  padding: 2rem;
}

.use-case-content h4 {
  color: var(--dark);
  margin: 2rem 0 1rem 0;
}

.use-case-content h4:first-child {
  margin-top: 0;
}

.use-case-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.use-case-content li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.use-case-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: var(--neutral-light);
  border-radius: 8px;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: var(--fs-small);
  color: var(--muted-text);
}

/* Tech Stack */
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-category h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-item {
  background: var(--surface);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  box-shadow: var(--shadow);
}

/* Case Study Detailed */
.case-study-detailed {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.case-study-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 178, 148, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 183, 3, 0.02) 0%, transparent 50%);
  z-index: 0;
}

.case-study-detailed > * {
  position: relative;
  z-index: 1;
}

/* Case Study Section Backgrounds */
.case-study-section-primary {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.case-study-section-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(0, 178, 148, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 183, 3, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.case-study-section-secondary {
  background: linear-gradient(135deg, rgba(0, 178, 148, 0.03) 0%, rgba(255, 183, 3, 0.02) 100%);
  position: relative;
}

.case-study-section-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 75%, rgba(15, 23, 36, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 75% 25%, rgba(0, 178, 148, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.case-study-section-tertiary {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.02) 0%, rgba(15, 23, 36, 0.03) 100%);
  position: relative;
}

.case-study-section-tertiary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 60%, rgba(0, 178, 148, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 40%, rgba(255, 183, 3, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.case-study-section-quaternary {
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.02) 0%, rgba(0, 178, 148, 0.03) 100%);
  position: relative;
}

.case-study-section-quaternary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 183, 3, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 178, 148, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.case-study-section-primary .container,
.case-study-section-secondary .container,
.case-study-section-tertiary .container,
.case-study-section-quaternary .container {
  position: relative;
  z-index: 1;
}

/* Premium Element Highlights - Clean White Backgrounds with Gradient Accents */
.services-section-premium {
  background: var(--surface);
  padding: 4rem 0;
}

.services-section-premium .section-title {
  background: var(--bg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.services-section-premium .service-card {
  background: var(--card-gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 178, 148, 0.1);
  box-shadow: var(--shadow-premium);
}

.services-section-premium .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
}

.use-cases-section-premium {
  background: var(--surface);
  padding: 4rem 0;
}

.use-cases-section-premium .section-title {
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.use-cases-section-premium .use-case-card {
  background: var(--card-gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 178, 148, 0.1);
  box-shadow: var(--shadow-premium);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.use-cases-section-premium .use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.use-cases-section-premium .use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(0, 178, 148, 0.2);
}

.use-cases-section-premium .use-case-card:hover::before {
  transform: scaleX(1);
}

.use-cases-section-premium .use-case-header h3 {
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.use-cases-section-premium .use-case-industry {
  background: rgba(0, 178, 148, 0.1);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-section-premium {
  background: var(--surface);
  padding: 4rem 0;
}

.about-section-premium .section-title {
  background: var(--bg-gradient-tertiary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.team-section-premium {
  background: var(--bg-gradient-secondary);
  position: relative;
  padding: 4rem 0;
}

.team-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-secondary), var(--radial-accent);
  z-index: 0;
}

.team-section-premium .container {
  position: relative;
  z-index: 1;
}

/* Principles Section - Redesigned */
.principles-section-premium {
  background: var(--surface);
  padding: 6rem 0;
  position: relative;
}

.principles-header {
  text-align: center;
  margin-bottom: 4rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 178, 148, 0.15);
}

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

.point-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.principle-card:hover .point-icon {
  transform: scale(1.1) rotate(5deg);
}

.principle-card h3 {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.principle-card p {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for principles grid */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.contact-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-secondary);
  z-index: 0;
}

.contact-hero-premium .container {
  position: relative;
  z-index: 1;
}

.booking-section-premium {
  background: var(--bg-gradient-secondary);
  position: relative;
  padding: 4rem 0;
}

.booking-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-dark), var(--radial-accent);
  z-index: 0;
}

.booking-section-premium .container {
  position: relative;
  z-index: 1;
}

.contact-methods-premium {
  background: var(--bg-gradient-tertiary);
  position: relative;
  padding: 4rem 0;
}

.contact-methods-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-secondary), var(--radial-dark);
  z-index: 0;
}

.contact-methods-premium .container {
  position: relative;
  z-index: 1;
}

.faq-section-premium {
  background: var(--surface);
  padding: 4rem 0;
}

.success-stories-premium {
  background: var(--surface);
  padding: 4rem 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  clear: both;
}

.education-section-premium {
  background: var(--bg-gradient-secondary);
  position: relative;
  padding: 4rem 0;
}

.education-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-dark), var(--radial-accent);
  z-index: 0;
}

.education-section-premium .container {
  position: relative;
  z-index: 1;
}

.case-study-highlight-premium {
  background: var(--surface);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.case-study-highlight-premium .case-study-content {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 178, 148, 0.2);
  text-align: center;
}

.case-study-highlight-premium h2 {
  background: var(--bg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 2rem;
}

.case-study-highlight-premium .case-stats {
  margin: 2rem 0;
}

.case-study-highlight-premium .stat-number {
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
}

.case-study-highlight-premium .stat-description {
  color: var(--dark);
  font-weight: 500;
  margin-top: 0.5rem;
}

.case-study-highlight-premium blockquote {
  color: var(--dark);
  font-style: italic;
  margin: 2rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.case-study-highlight-premium .btn {
  background: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
  font-weight: 600;
}

.cta-section-premium {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  position: relative;
  padding: 4rem 0;
}

.cta-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  z-index: 0;
}

.cta-section-premium .container {
  position: relative;
  z-index: 1;
}

/* Services Page Premium Sections */
.services-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.services-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-secondary);
  z-index: 0;
}

.services-hero-premium .container {
  position: relative;
  z-index: 1;
}

.pricing-section-premium {
  background: var(--bg-gradient-secondary);
  position: relative;
  padding: 4rem 0;
}

.pricing-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-dark), var(--radial-accent);
  z-index: 0;
}

.pricing-section-premium .container {
  position: relative;
  z-index: 1;
}

.services-cta-premium {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  position: relative;
  padding: 4rem 0;
}

.services-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  z-index: 0;
}

.services-cta-premium .container {
  position: relative;
  z-index: 1;
}

/* Use Cases Page Premium Sections */
.use-cases-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.use-cases-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-dark);
  z-index: 0;
}

.use-cases-hero-premium .container {
  position: relative;
  z-index: 1;
}

/* Privacy, Terms, FAQ Hero Sections - Match Use Cases Style */
.privacy-hero-premium,
.terms-hero-premium,
.faq-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.privacy-hero-premium::before,
.terms-hero-premium::before,
.faq-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-dark);
  z-index: 0;
}

.privacy-hero-premium .container,
.terms-hero-premium .container,
.faq-hero-premium .container {
  position: relative;
  z-index: 1;
}

.tech-stack-premium {
  background: var(--bg-gradient-primary);
  position: relative;
  padding: 4rem 0;
}

.tech-stack-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-secondary), var(--radial-accent);
  z-index: 0;
}

.tech-stack-premium .section-title {
  color: var(--dark);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.tech-stack-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-stack-subtitle {
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-gradient-glass);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 178, 148, 0.2);
  box-shadow: var(--shadow-premium);
}

.badge-text {
  color: var(--dark);
  font-weight: 500;
}

.badge-count {
  background: var(--bg-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.tech-stack-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.tech-category-modern {
  background: var(--card-gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 178, 148, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

.tech-category-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(0, 178, 148, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 178, 148, 0.1);
}

.category-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--bg-gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 178, 148, 0.15);
  animation: float 3s ease-in-out infinite;
}

.category-header h3 {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1;
}

.tech-count {
  background: rgba(0, 178, 148, 0.1);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tech-pill {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 178, 148, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient-secondary);
  transition: left 0.5s ease;
  z-index: -1;
}

.tech-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 178, 148, 0.2);
  border-color: rgba(0, 178, 148, 0.3);
  color: white;
}

.tech-pill:hover::before {
  left: 0;
}

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

/* Enhanced Hero Sections */
.hero-subtitle-enhanced {
  max-width: none;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--bg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--dark);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  font-weight: 500;
}

.transformation-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 178, 148, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(0, 178, 148, 0.2);
}

.highlight-icon {
  font-size: 1.2rem;
}

.highlight-text {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* About Hero Enhanced */
.about-hero-enhanced {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 8rem 0 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.about-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-secondary);
  z-index: 0;
}

.about-hero-enhanced .container {
  position: relative;
  z-index: 1;
}

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

.approach-highlight {
  background: var(--card-gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 178, 148, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-premium);
}

.approach-highlight h3 {
  background: var(--bg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tech-stack-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-category-modern {
    padding: 1.5rem;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .tech-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-stats, .transformation-highlights {
    gap: 1rem;
  }

  .stat-item, .highlight-item {
    flex: 1;
    min-width: 150px;
  }
}

/* Case Studies Enhanced */
.case-studies-hero-enhanced {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 8rem 0 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.case-studies-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-secondary);
  z-index: 0;
}

.case-studies-hero-enhanced .container {
  position: relative;
  z-index: 1;
}

.results-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 178, 148, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(0, 178, 148, 0.2);
}

.result-icon {
  font-size: 1.2rem;
}

/* Contact Hero Enhanced */
.contact-hero-enhanced {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 8rem 0 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.contact-hero-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-secondary);
  z-index: 0;
}

.contact-hero-enhanced .container {
  position: relative;
  z-index: 1;
}

.result-text {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Case Studies CTA Premium */
.case-studies-cta-premium {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  position: relative;
  padding: 4rem 0;
}

.case-studies-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  z-index: 0;
}

.case-studies-cta-premium .container {
  position: relative;
  z-index: 1;
}

.case-studies-cta-premium h2,
.case-studies-cta-premium p {
  color: white;
}

.use-cases-cta-premium {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  position: relative;
  padding: 4rem 0;
}

.use-cases-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  z-index: 0;
}

.use-cases-cta-premium .container {
  position: relative;
  z-index: 1;
}

/* Integrations Page Premium Sections */
.integrations-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.integrations-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-dark);
  z-index: 0;
}

.integrations-hero-premium .container {
  position: relative;
  z-index: 1;
}

.integrations-grid-premium {
  background: var(--bg-gradient-quaternary);
  position: relative;
  padding: 4rem 0;
}

.integrations-grid-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-secondary), var(--radial-accent);
  z-index: 0;
}

.integrations-grid-premium .container {
  position: relative;
  z-index: 1;
}

.integrations-cta-premium {
  background: var(--bg-gradient-primary);
  position: relative;
  padding: 4rem 0;
}

.integrations-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-dark), var(--radial-secondary);
  z-index: 0;
}

.integrations-cta-premium .container {
  position: relative;
  z-index: 1;
}

/* Team Page Premium Sections */
.team-hero-premium {
  background: linear-gradient(135deg, #e6f7f3 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.team-hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-dark);
  z-index: 0;
}

.team-hero-premium .container {
  position: relative;
  z-index: 1;
}

.leadership-section-premium {
  background: var(--bg-gradient-tertiary);
  position: relative;
  padding: 4rem 0;
}

.leadership-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-secondary), var(--radial-accent);
  z-index: 0;
}

.leadership-section-premium .container {
  position: relative;
  z-index: 1;
}

.team-members-premium {
  background: var(--bg-gradient-quaternary);
  position: relative;
  padding: 4rem 0;
}

.team-members-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-dark), var(--radial-secondary);
  z-index: 0;
}

.team-members-premium .container {
  position: relative;
  z-index: 1;
}

.join-us-premium {
  background: var(--bg-gradient-primary);
  position: relative;
  padding: 4rem 0;
}

.join-us-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--radial-accent), var(--radial-dark);
  z-index: 0;
}

.join-us-premium .container {
  position: relative;
  z-index: 1;
}

.case-study-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.95), rgba(0, 178, 148, 0.85));
  border-radius: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.case-study-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(255, 183, 3, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 40% 90%, rgba(0, 178, 148, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.case-study-header h2 {
  color: white !important;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-study-header .case-study-meta {
  position: relative;
  z-index: 1;
}

.case-study-header .industry,
.case-study-header .timeline {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.case-study-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.industry,
.timeline {
  background: var(--neutral-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  color: var(--muted-text);
}

.challenge-section,
.solution-section,
.impact-section,
.testimonial-section {
  margin-bottom: 4rem;
  position: relative;
}

.challenge-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.02), rgba(0, 178, 148, 0.02));
  border-radius: 24px;
  margin: 3rem 0;
}

.solution-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.02), rgba(15, 23, 36, 0.02));
  border-radius: 24px;
  margin: 3rem 0;
  position: relative;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 178, 148, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.03) 0%, transparent 50%);
  border-radius: 24px;
  z-index: 0;
}

.solution-section > * {
  position: relative;
  z-index: 1;
}

.impact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0, 178, 148, 0.03), rgba(255, 183, 3, 0.03));
  border-radius: 24px;
  margin: 3rem 0;
  border: 1px solid rgba(0, 178, 148, 0.1);
}

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

.challenge-section h3,
.solution-section h3,
.impact-section h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.challenge-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.challenge-point {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.challenge-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.challenge-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 178, 148, 0.15);
}

.challenge-point:hover::before {
  transform: scaleX(1);
}

.point-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.challenge-point:hover .point-icon {
  transform: scale(1.1) rotate(5deg);
}

.challenge-point p {
  color: var(--muted-text);
  margin: 0;
  line-height: 1.5;
}

.agent-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.agent-detail {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.agent-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.agent-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 178, 148, 0.15);
}

.agent-detail:hover::before {
  transform: scaleX(1);
}

.agent-detail h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.agent-detail:hover h4 {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agent-detail p {
  color: var(--muted-text);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.tech-stack-used {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--neutral-light);
  margin-top: 2rem;
}

.tech-stack-used h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

.impact-item {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 178, 148, 0.15);
}

.impact-item:hover::before {
  transform: scaleX(1);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.impact-item:hover .impact-number {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.impact-description {
  color: var(--muted-text);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.testimonial-section {
  background: linear-gradient(135deg, rgba(0, 178, 148, 0.03), rgba(255, 183, 3, 0.03));
  border: 1px solid rgba(0, 178, 148, 0.1);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 178, 148, 0.08);
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.testimonial-section:hover::before {
  left: 100%;
}

.testimonial-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 178, 148, 0.15);
  border-color: rgba(0, 178, 148, 0.2);
}

.testimonial-section blockquote {
  font-size: var(--fs-large);
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial-section:hover blockquote {
  color: var(--accent);
}

.testimonial-section blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -2rem;
  font-family: serif;
}

.testimonial-section cite {
  color: var(--muted-text);
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial-section:hover cite {
  color: var(--secondary);
}

/* Booking Layout */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  color: var(--dark);
  margin-bottom: 2rem;
}

.agenda-item {
  margin-bottom: 2rem;
}

.agenda-item h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.agenda-item p {
  color: var(--muted-text);
  line-height: 1.6;
}

.meeting-types {
  margin-top: 3rem;
}

.meeting-types h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.meeting-type-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meeting-type-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.meeting-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.meeting-type-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.meeting-type-card h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.meeting-duration {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.meeting-type-card p {
  color: var(--muted-text);
  font-size: var(--fs-small);
  margin: 0;
}

/* Form Styles */
.form-container {
  background: var(--surface);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-container h3 {
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem;
  border: 1px solid var(--neutral-light);
  border-radius: 4px;
  font-size: var(--fs-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 168, 150, 0.1);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: var(--accent);
}

.invalid-feedback {
  color: #dc3545;
  font-size: var(--fs-small);
  margin-top: 0.25rem;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: var(--fs-body);
}

.form-note {
  text-align: center;
  color: var(--muted-text);
  font-size: var(--fs-small);
  margin-top: 1rem;
}

/* Alternative Contact */
.alternative-contact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.alternative-contact h2 {
  color: var(--dark);
  margin-bottom: 3rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-method {
  background: var(--surface);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-method h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-method p {
  color: var(--muted-text);
  margin: 0.5rem 0;
}

.contact-method a {
  color: var(--dark);
  font-weight: 600;
}

.contact-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B1320;
  margin: 0.5rem 0;
}

.phone-numbers {
  white-space: nowrap;
}

.phone-numbers a {
  display: inline-block;
  white-space: nowrap;
  margin: 0.2rem 0;
}

.social-links {
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid rgba(0, 178, 148, 0.3);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-links p {
  color: #0B1320;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.social-links a {
  color: #00B294;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(0, 178, 148, 0.1);
  margin-left: 0.5rem;
}

.social-links a:hover {
  color: white;
  background: #00B294;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 178, 148, 0.3);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 238, 244, 0.8) 100%);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 178, 148, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00B294 0%, #FFB703 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 178, 148, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(0, 178, 148, 0.05) 100%);
  border-color: rgba(0, 178, 148, 0.2);
}

.faq-item h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item:hover h3 {
  color: #00B294;
}

.faq-item p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive FAQ Grid */
@media (max-width: 1200px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agent-system {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 70vh;
    padding: calc(var(--spacing-section) + 1rem) 0 var(--spacing-section) 0;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .transformation-showcase {
    order: -1;
  }
  
  .showcase-card {
    padding: 1.25rem;
  }
  
  .showcase-card:hover {
    transform: translateY(-5px);
  }
  
  .success-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .success-metrics {
    gap: 1rem;
  }
  
  .floating-elements {
    display: none;
  }
  
  .service-card.expandable {
    height: auto;
    min-height: 300px;
  }
  
  .service-card.expandable:hover {
    height: auto;
    min-height: 300px;
    transform: none;
    z-index: 1;
  }
}

/* Tagline Section */
.tagline-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, 
    rgba(0, 178, 148, 0.05) 0%, 
    rgba(255, 183, 3, 0.05) 50%, 
    rgba(0, 178, 148, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.tagline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(0, 178, 148, 0.03) 25%, 
    transparent 50%, 
    rgba(255, 183, 3, 0.03) 75%, 
    transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
}

.tagline-section-premium {
  padding: 4rem 0;
  background: var(--card-gradient-hero);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.tagline-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(255, 183, 3, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 40% 90%, rgba(0, 178, 148, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.tagline-section-premium .container {
  position: relative;
  z-index: 1;
}

.tagline-hero {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 183, 3, 0.8)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.tagline-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.tagline-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0F1724 !important;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Form Alerts */
.alert {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.alert-success {
  background-color: var(--accent);
}

.alert-error {
  background-color: #dc2626;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading Spinner */
.loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top: 2px solid white;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

/* Blog Styles */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.article-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.article-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.article-excerpt {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary);
}

.newsletter-signup {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-signup input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
}

.newsletter-signup input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 0 3rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .featured-article {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-signup {
    flex-direction: column;
  }
}

/* Plan Mode Modal Styles */
.plan-mode-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.plan-mode-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e6eef4;
}

.modal-header h2 {
  margin: 0;
  color: var(--dark);
}

.close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted-text);
  background: none;
  border: none;
  padding: 0.5rem;
}

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

.plan-mode-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e6eef4;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 178, 148, 0.1);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.system-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #e6eef4;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.system-option:hover {
  border-color: var(--accent);
  background: rgba(0, 178, 148, 0.05);
}

.system-option input {
  width: auto;
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.plan-results {
  padding: 2rem;
}

.plan-results h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.integration-list,
.template-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.integration-item,
.template-item {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.integration-item strong,
.template-item strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.integration-item p,
.template-item p {
  color: var(--muted-text);
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.doc-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.doc-link:hover {
  text-decoration: underline;
}

.plan-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* Plan Mode Trigger Button */
.plan-mode-trigger {
  background: linear-gradient(135deg, #00B294, #008577);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 178, 148, 0.3);
}

.plan-mode-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 178, 148, 0.4);
}

@media (max-width: 768px) {
  .plan-mode-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-header,
  .plan-mode-form,
  .plan-results {
    padding: 1.5rem;
  }
  
  .systems-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions,
  .plan-actions {
    flex-direction: column;
  }
}

/* Integrations Page Styles */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.integration-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
  border-color: var(--accent);
}

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

.integration-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.integration-card:hover .integration-icon {
  transform: scale(1.1) rotate(5deg);
}

.integration-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.integration-card p {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(0, 178, 148, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tier-requirement {
  background: rgba(255, 183, 3, 0.1);
  color: #b45309;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.integration-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.integration-link:hover {
  color: var(--dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .integration-card {
    padding: 1.5rem;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding-mobile);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--container-padding-tablet);
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0 var(--container-padding-desktop);
  }
}

/* FAQ System Styles */
.faq-categories-section {
  background: var(--neutral-light);
  padding: 4rem 0;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: var(--surface);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 178, 148, 0.15);
}

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

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin: 0;
}

.faq-content-section {
  padding: 4rem 0;
}

.faq-group {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  transition: background 0.3s ease;
}

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

.faq-question h3 {
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.faq-answer p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--dark);
}

.faq-navigation {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.nav-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.nav-btn.secondary {
  background: transparent;
  color: var(--accent);
}

.nav-btn.secondary:hover {
  background: var(--accent);
  color: white;
}

.cta-section {
  text-align: center;
  padding: 2rem 0;
  margin: 2rem 0;
  background: var(--neutral-light);
  border-radius: 12px;
}

.back-to-categories {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive FAQ */
@media (max-width: 1024px) {
  .faq-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-navigation {
    flex-direction: column;
  }
  
  .nav-btn {
    text-align: center;
  }
}

/* Chatbot Widget Styles */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chatbot-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  cursor: pointer;
  display: none !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 178, 148, 0.4);
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(0, 178, 148, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(0, 178, 148, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(0, 178, 148, 0.4); }
}

.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 178, 148, 0.6);
}

.chatbot-button.active {
  background: var(--accent-dark);
}

.chatbot-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

.chatbot-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 380px;
}

.chatbot-message {
  margin-bottom: 1rem;
  animation: fadeIn 0.3s ease;
}

.chatbot-message p {
  margin: 0 0 0.5rem 0;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  line-height: 1.4;
  white-space: pre-line;
}

.bot-message p {
  background: var(--neutral-light);
  color: var(--dark);
  margin-right: 2rem;
}

.user-message p {
  background: var(--accent);
  color: white;
  margin-left: 2rem;
  text-align: right;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.option-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.chatbot-input-area {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.chatbot-input-area input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chatbot-input-area input:focus {
  border-color: var(--accent);
}

.chatbot-input-area button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chatbot-input-area button:hover {
  background: var(--accent-dark);
}

/* Responsive Chatbot */
@media (max-width: 768px) {
  .chatbot-panel {
    width: 300px;
    height: 450px;
  }
  
  .chatbot-widget {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 40px);
    right: -10px;
    height: 400px;
  }
}

/* Simple FAQ Flip Cards */
.simple-faq-section {
  padding: 4rem 0;
  background: var(--neutral-light);
}

.simple-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-flip-card {
  background: transparent;
  width: 100%;
  min-height: 320px;
  height: auto;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(0deg) scale(1);
  z-index: 1;
}

.faq-flip-card:not(:hover) .faq-card-inner {
  transform: rotateY(0deg) scale(1);
  z-index: 1;
  transition: transform 0.5s ease-in-out;
}

.faq-flip-card:hover .faq-card-inner {
  transform: rotateY(180deg) scale(1.05);
  z-index: 10;
  transition: transform 0.5s ease-in-out;
}

.faq-card-front, .faq-card-back {
  position: absolute;
  width: 100%;
  min-height: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: visible;
}

.faq-card-front::before, .faq-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.faq-flip-card:hover .faq-card-front::before,
.faq-flip-card:hover .faq-card-back::before {
  transform: scaleX(1);
}

.faq-card-front {
  background: var(--surface);
  color: var(--dark);
  justify-content: center;
}

.faq-card-back {
  background: linear-gradient(135deg, #00B294, #008f73);
  color: white !important;
  transform: rotateY(180deg);
  text-align: left;
  justify-content: flex-start;
  padding: 1.75rem;
  min-height: 320px;
}

.faq-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.faq-card-back .faq-icon {
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.faq-card-front h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: var(--dark);
}

.faq-card-back h4 {
  color: white !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-align: left;
  width: 100%;
}

.faq-card-back p {
  color: white !important;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  width: 100%;
}

.faq-card-back ul, .faq-card-back ol {
  color: white !important;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0.4rem 0;
  padding-left: 1rem;
  width: 100%;
}

.faq-card-back li {
  color: white !important;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.faq-card-back strong {
  color: white;
  font-weight: 600;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  background: white;
  color: var(--accent);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-small:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Responsive FAQ Grid */
@media (max-width: 1200px) {
  .simple-faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .simple-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .faq-flip-card {
    min-height: 280px;
  }
  
  .faq-card-back {
    min-height: 280px;
    padding: 1.5rem;
  }
  
  .faq-card-front h3 {
    font-size: 1rem;
  }
  
  .faq-icon {
    font-size: 2.5rem;
  }
  
  .faq-flip-card:not(:hover) .faq-card-inner {
    transform: rotateY(0deg) scale(1);
    transition: transform 0.4s ease-in-out;
  }
  
  .faq-flip-card:hover .faq-card-inner {
    transform: rotateY(180deg) scale(1.02);
    transition: transform 0.4s ease-in-out;
  }
}

@media (max-width: 480px) {
  .simple-faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .faq-flip-card {
    min-height: 300px;
  }
  
  .faq-card-back {
    min-height: 300px;
    padding: 1.25rem;
  }
  
  .faq-card-back p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .faq-card-back ul, .faq-card-back ol {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .faq-flip-card:not(:hover) .faq-card-inner {
    transform: rotateY(0deg) scale(1);
    transition: transform 0.3s ease-in-out;
  }
  
  .faq-flip-card:hover .faq-card-inner {
    transform: rotateY(180deg) scale(1.0);
    transition: transform 0.3s ease-in-out;
  }
}

/* Legal Pages Styles */
.legal-content-section {
  padding: 4rem 0;
  background: var(--surface);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.legal-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 178, 148, 0.15);
  border-color: rgba(0, 178, 148, 0.2);
}

.legal-content:hover::before {
  transform: scaleX(1);
}

.legal-meta {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  border-left: 4px solid var(--accent);
}

.legal-meta p {
  margin: 0.5rem 0;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.legal-section h3 {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.legal-section p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-section ul, .legal-section ol {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-section em {
  color: var(--muted-text);
  font-style: italic;
}

.contact-details {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-details p {
  margin: 0.75rem 0;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

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

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-footer p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.2rem;
  }
  
  .legal-section ul, .legal-section ol {
    padding-left: 1.5rem;
  }
}

/* Missing Hero Section Styles */
.hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  color: var(--surface);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.9) 0%, rgba(0, 178, 148, 0.8) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content > * {
  text-align: center;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface);
}

.hero-subtitle-enhanced {
  font-size: var(--fs-large);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.simple-faq-section {
  padding: var(--spacing-section) 0;
  background: var(--surface);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .simple-faq-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .simple-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* Standardized Compact Footer */
.footer {
  background: var(--dark);
  color: var(--surface);
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact .contact-item {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--surface);
}

.footer-contact .contact-item a {
  color: var(--surface);
  text-decoration: none;
}

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

.footer-contact .contact-info a {
  color: var(--surface);
  text-decoration: none;
}

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

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--surface);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

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

.footer-logo {
  height: 32px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-text);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

/* Contact Page Styles */
.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-options {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.booking-primary h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
  color: var(--dark);
}

.calendly-embed-container {
  margin: 2rem 0;
}

.call-details {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: left;
}

.call-details h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.call-details ul {
  list-style: none;
  padding: 0;
}

/* Enhanced Booking Section */
.booking-section-enhanced {
  padding: 4rem 0;
}

.booking-primary-enhanced {
  background: linear-gradient(135deg, #0B1320 0%, #1a2332 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: subtle-float 6s ease-in-out infinite;
}

.booking-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00B294 0%, #FFB703 100%);
  animation: accent-glow 3s ease-in-out infinite;
}

.booking-primary-enhanced h2 {
  color: white;
  margin-bottom: 1rem;
}

.booking-primary-enhanced p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.call-details-enhanced {
  background: rgba(0, 178, 148, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: left;
  border: 1px solid rgba(0, 178, 148, 0.2);
}

.call-details-enhanced h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.3rem;
}

.animated-list {
  list-style: none;
  padding: 0;
}

.animated-list li {
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 2rem;
  animation: list-fade-in 0.6s ease forwards;
  opacity: 0;
}

.animated-list li:nth-child(1) { animation-delay: 0.2s; }
.animated-list li:nth-child(2) { animation-delay: 0.4s; }
.animated-list li:nth-child(3) { animation-delay: 0.6s; }

.animated-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00B294;
  font-weight: bold;
  animation: arrow-pulse 2s ease-in-out infinite;
}

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

@keyframes accent-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes list-fade-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes arrow-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.call-details li {
  padding: 0.5rem 0;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.simple-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Enhanced Contact Form */
.contact-form-enhanced {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
}

.contact-form-section-enhanced {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: #0B1320;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-header p {
  color: #6B7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 178, 148, 0.1);
}

.contact-form-premium .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  color: #0B1320;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.form-control-enhanced {
  padding: 1rem;
  border: 2px solid #E6EEF4;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-control-enhanced:focus {
  outline: none;
  border-color: #00B294;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 178, 148, 0.1);
  transform: translateY(-1px);
}

.form-control-enhanced::placeholder {
  color: #9CA3AF;
}

.form-submit-btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 178, 148, 0.3);
}

@media (max-width: 768px) {
  .contact-form-premium .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-container {
    padding: 2rem;
  }
}

.contact-method h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bg-light {
  background: var(--neutral-light) !important;
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .simple-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Smart Chatbot Styles */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-appear {
  animation: chatbotSlideIn 0.5s ease-out;
}

@keyframes chatbotSlideIn {
  from {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.chatbot-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, #00b4a0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 178, 148, 0.3);
  transition: all 0.3s ease;
  color: white;
  position: relative;
}

.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 178, 148, 0.4);
}

.chatbot-button.active {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.chatbot-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: chatbotPanelSlideIn 0.3s ease-out;
}

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

.chatbot-header {
  background: linear-gradient(135deg, var(--accent) 0%, #00b4a0 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.chatbot-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-content {
  height: calc(500px - 68px);
  display: flex;
  flex-direction: column;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chatbot-message {
  max-width: 85%;
  animation: messageSlideIn 0.3s ease-out;
}

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

.chatbot-message p {
  margin: 0 0 12px 0;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.4;
  font-size: 14px;
}

.bot-message {
  align-self: flex-start;
}

.bot-message p {
  background: #f1f3f4;
  color: #333;
}

.user-message {
  align-self: flex-end;
}

.user-message p {
  background: linear-gradient(135deg, var(--accent) 0%, #00b4a0 100%);
  color: white;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.option-btn {
  background: white;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

.chatbot-input-area {
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
}

.chatbot-input-area input {
  flex: 1;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input-area input:focus {
  border-color: var(--accent);
}

.chatbot-input-area button {
  background: linear-gradient(135deg, var(--accent) 0%, #00b4a0 100%);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-input-area button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 178, 148, 0.3);
}

.typewriter-text {
  position: relative;
}

.typewriter-text::after {
  content: '|';
  animation: blink 1s infinite;
  opacity: 1;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .chatbot-panel {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 80px;
    height: 400px;
  }
  
  .chatbot-widget {
    bottom: 10px;
    right: 10px;
  }
}

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
}

.form-status .alert {
  position: static;
  margin: 0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-status .alert-success {
  background-color: var(--accent);
  color: white;
}

.form-status .alert-error {
  background-color: #dc2626;
  color: white;
}