/* ==========================================================================
   C&L Strategy - Strategic Execution
   Professional Corporate Design - BCG/Emergent Inspired
   ========================================================================== */

/* CSS Variables for Theme */
:root {
  /* Energy Theme Palette - Dark Navy & Gold */
  --dark-navy: #0a1628;
  --navy-blue: #0f2847;
  --deep-navy: #1a3a52;
  --gold: #d4a574;
  --gold-light: #e8c9a0;
  --gold-dark: #b8860b;
  --white: #FFFFFF;
  --off-white: #f9fafb;
  --light-gray: #e5e7eb;
  --medium-gray: #6b7280;
  --dark-gray: #374151;
  --charcoal: #1f2937;
  --black: #111827;

  /* Gradients - Energy Theme */
  --primary-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --navy-gradient: linear-gradient(180deg, var(--dark-navy) 0%, var(--navy-blue) 100%);
  --hero-gradient: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-navy) 50%, var(--dark-navy) 100%);
  --gold-to-navy: linear-gradient(180deg, var(--gold) 0%, var(--dark-navy) 100%);
  --subtle-gradient: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);

  /* Typography - Clean Sans-Serif */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16);
  --glow-shadow: 0 0 30px rgba(212, 165, 116, 0.25);
  --gold-glow: 0 0 30px rgba(212, 165, 116, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.65;
  color: var(--dark-gray);
  background-color: var(--dark-navy);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.015em;
}

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

/* Ensure rotating text stays on one line */
.hero-title .rotating-text {
  font-size: 1em !important;
  white-space: nowrap !important;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-navy);
  box-shadow: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark-navy);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Navigation - Energy Theme Dark Navy & Gold */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-navy);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: var(--dark-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar .nav-link,
.navbar .company-name {
  color: var(--white);
}

.navbar .tagline {
  color: var(--gold);
}

.navbar .logo-icon i {
  color: var(--gold);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
}

.logo-icon i {
  font-size: 1.25rem;
  color: var(--dark-navy);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  transition: color var(--transition-normal);
  letter-spacing: -0.01em;
}

.tagline {
  font-size: 0.75rem;
  color: var(--medium-gray);
  font-style: normal;
  transition: color var(--transition-normal);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
  padding: 8px 0;
  font-size: 0.9375rem;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all var(--transition-normal);
}

/* Hero Section - Energy Theme */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px var(--space-md) 80px;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--white);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  margin-bottom: var(--space-lg);
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.highlight {
  color: var(--gold) !important;
  position: relative;
  display: inline-block;
  font-weight: 900 !important;
}

/* Enhanced Rotating Text Styling - MAXIMUM IMPACT */
.rotating-text {
  color: var(--gold) !important;
  font-size: 1em !important;
  font-weight: 900 !important;
  display: inline-block;
  min-width: 280px;
  text-align: left;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(212, 165, 116, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Hero Visual Effects */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.illumination-effect {
  position: relative;
  width: 300px;
  height: 300px;
}

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow:
    0 0 50px rgba(212, 165, 116, 0.5),
    0 0 100px rgba(212, 165, 116, 0.3),
    0 0 150px rgba(212, 165, 116, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.light-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.ray {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 165, 116, 0.3) 50%,
    transparent 100%
  );
  transform-origin: center;
}

.ray-1 {
  width: 200px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotate 10s linear infinite;
}

.ray-2 {
  width: 180px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: rotate 12s linear infinite reverse;
}

.ray-3 {
  width: 160px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  animation: rotate 8s linear infinite;
}

.ray-4 {
  width: 140px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  animation: rotate 15s linear infinite reverse;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: var(--space-md);
  color: var(--dark-navy);
}

.services .section-title {
  color: var(--dark-navy);
}

.services-preview .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
}

.services .section-subtitle {
  color: var(--dark-gray);
}

.services-preview .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  box-shadow: none;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gold-light);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--dark-navy);
}

.service-title {
  margin-bottom: var(--space-md);
  color: var(--dark-navy);
}

.services-preview .service-title {
  color: var(--white);
}

.service-description {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.services-preview .service-description {
  color: rgba(255, 255, 255, 0.8);
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--dark-gray);
}

.services-preview .service-features li {
  color: rgba(255, 255, 255, 0.75);
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--bright-blue);
  font-weight: bold;
}

/* About Section */
.about {
  padding: var(--space-2xl) 0;
  background: var(--dark-navy);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-story p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-values {
  margin-top: var(--space-xl);
}

.value {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.value:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.value-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.value-content p {
  color: var(--dark-gray);
  font-size: 1rem;
}

/* About Visual */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illumination-graphic {
  position: relative;
  width: 300px;
  height: 400px;
}

.candle-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.candle-flame {
  width: 30px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin-bottom: 10px;
  animation: flicker 2s ease-in-out infinite alternate;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.candle-body {
  width: 60px;
  height: 200px;
  background: linear-gradient(180deg, var(--bright-blue) 0%, var(--navy-blue) 100%);
  border-radius: 5px 5px 10px 10px;
  box-shadow: var(--shadow-md);
}

.light-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
  animation: expand 4s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.circle-3 {
  width: 250px;
  height: 250px;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

/* Insights Section */
.insights {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.insight-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--light-gray);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.insight-card.featured {
  grid-column: span 2;
  background: var(--dark-navy);
  color: var(--white);
  border-color: var(--bright-blue);
}

.insight-card.featured .insight-title {
  color: var(--white);
  font-weight: 700;
}

.insight-card.featured .insight-category,
.insight-card.featured .insight-date,
.insight-card.featured .insight-excerpt {
  color: rgba(255, 255, 255, 0.95);
}

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

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.insight-category {
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.insight-card.featured .insight-category {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 700;
}

.insight-date {
  color: var(--medium-gray);
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.insight-title {
  margin-bottom: var(--space-md);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.insight-excerpt {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.insight-link {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-normal);
  margin-top: auto;
}

.insight-card.featured .insight-link {
  color: var(--white);
  font-weight: 700;
}

.insight-link:hover {
  transform: translateX(5px);
}


/* Subtle HTML version link under cards */
.insight-alt {
  margin-top: 6px;
  font-size: 0.8rem; /* ~12-13px */
  color: var(--medium-gray);
}
.insight-alt a {
  color: var(--medium-gray);
  text-decoration: underline;
}

/* Contact Section */
/* Article Header + Category Themes */
.article-header {
  padding: 120px var(--space-md) var(--space-xl);
  background: var(--off-white);
}
.article-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Category badge variants */
.insight-category.badge-oilgas { background: #ffe199; color: var(--charcoal); }
.insight-category.badge-workforce { background: #bce7ef; color: var(--charcoal); }
.insight-category.badge-entre { background: #e4c7ff; color: var(--charcoal); }
.insight-category.badge-answer { background: #c6d4ff; color: var(--charcoal); }
.insight-category.badge-smallbiz { background: #c7f5c4; color: var(--charcoal); }

/* Category hero backgrounds (CSS-only hero images) */
.article-header.category-oilgas {
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.18) 0%, transparent 50%),
    var(--off-white);
}
.article-header.category-workforce {
  background:
    radial-gradient(circle at 25% 65%, rgba(139, 211, 221, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(20, 120, 150, 0.10) 0%, transparent 50%),
    var(--off-white);
}
.article-header.category-entre {
  background:
    radial-gradient(circle at 25% 65%, rgba(214, 166, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(126, 87, 194, 0.10) 0%, transparent 50%),
    var(--off-white);
}
.article-header.category-answer {
  background:
    radial-gradient(circle at 25% 65%, rgba(163, 180, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(63, 81, 181, 0.10) 0%, transparent 50%),
    var(--off-white);
}
.article-header.category-smallbiz {
  background:
    radial-gradient(circle at 25% 65%, rgba(167, 240, 160, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(56, 142, 60, 0.10) 0%, transparent 50%),
    var(--off-white);
}

.contact {
  padding: var(--space-2xl) 0;
  background: var(--dark-navy);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-methods {
  margin-top: var(--space-xl);
}

.contact-method {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(212, 165, 116, 0.1);
  border-radius: 15px;
  transition: all var(--transition-normal);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-method:hover {
  background: rgba(212, 165, 116, 0.15);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--dark-navy);
  font-size: 1.2rem;
}

.contact-details h4 {
  margin-bottom: var(--space-xs);
  color: var(--gold);
}

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

/* Contact Form */
.contact-form-container {
  background: var(--deep-navy);
  padding: var(--space-xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

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

/* Footer */
.footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg) 0;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-description {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  margin-bottom: var(--space-lg);
  color: var(--gold);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-blue);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--bright-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50% { transform: scale(1.1) rotate(2deg); }
}

@keyframes expand {
  0%, 100% { transform: translateX(-50%) scale(0.8); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.1; }
}

/* Page Header Styles */
.page-header {
  padding: 120px var(--space-md) var(--space-2xl);
  background: var(--off-white);
  text-align: center;
}

.page-title {
  margin-bottom: var(--space-md);
  background: var(--dark-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Service Section Styles */
.service-section {
  padding: var(--space-2xl) 0;
}

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

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.service-content.reverse {
  direction: rtl;
}

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

/* AI Report Section */
.ai-report-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy-blue) 100%);
  position: relative;
  overflow: hidden;
}

.ai-report-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ai-report-section .section-title {
  color: var(--white);
}

.ai-report-section .section-subtitle {
  color: var(--gold-light);
}

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

.report-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.report-description strong {
  color: var(--gold);
}

.report-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.ai-report-form {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-2xl);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ai-report-form .form-group {
  margin-bottom: var(--space-lg);
}

.ai-report-form label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 0.95rem;
}

.ai-report-form input,
.ai-report-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-normal);
  color: var(--dark-navy);
}

.ai-report-form input:focus,
.ai-report-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.ai-report-form button {
  width: 100%;
  margin-top: var(--space-md);
}

.report-benefits {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2xl);
  border-radius: 15px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(10px);
}

.report-benefits h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.3rem;
}

.report-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-benefits li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1rem;
  line-height: 1.6;
}

.report-benefits i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

  .ai-report-form {
    padding: var(--space-lg);
  }

  .report-benefits {
    padding: var(--space-lg);
  }

  .report-description {
    font-size: 1rem;
  }
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  box-shadow: var(--glow-shadow);
}

.service-icon-large i {
  font-size: 2rem;
  color: var(--charcoal);
}

.service-offerings {
  margin-top: var(--space-xl);
}

.offering {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.offering:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.offering-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offering-icon i {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.offering-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.offering-content p {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
  line-height: 1.6;
}

.offering-features {
  list-style: none;
}

.offering-features li {
  padding: 4px 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.offering-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--bright-blue);
  font-size: 0.8rem;
}

/* Service Visual Elements */
.digital-graphic, .finance-graphic, .process-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.code-window {
  background: var(--charcoal);
  border-radius: 10px;
  width: 300px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.window-header {
  background: var(--dark-gray);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.code-content {
  padding: var(--space-lg);
  font-family: 'Courier New', monospace;
  color: var(--white);
  line-height: 1.8;
}

.code-line {
  margin-bottom: 8px;
}

.code-line.indent {
  padding-left: var(--space-md);
}

.keyword { color: #ff79c6; }
.function { color: #50fa7b; }
.string { color: #f1fa8c; }

.chart-container {
  position: relative;
  width: 250px;
  height: 200px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 150px;
}

.bar {
  width: 30px;
  background: var(--primary-gradient);
  border-radius: 4px 4px 0 0;
  transition: height var(--transition-slow);
}

.chart-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
  border-radius: 20px;
  z-index: -1;
}

.process-flow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.step-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 600;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--bright-blue);
}

.realestate-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.building-outline {
  position: relative;
  width: 120px;
  height: 200px;
  background: var(--primary-gradient);
  border-radius: 10px 10px 0 0;
  box-shadow: var(--shadow-lg);
}

.building-floors {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

.floor {
  height: 35px;
  background: rgba(44, 44, 44, 0.1);
  margin-bottom: 8px;
  border-radius: 5px;
  border: 2px solid rgba(44, 44, 44, 0.2);
}

.building-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%);
  border-radius: 25px;
  z-index: -1;
}

/* Services CTA */
.services-cta, .about-cta {
  padding: var(--space-2xl) 0;
  background: var(--primary-gradient);
  text-align: center;
}

.services-cta .cta-content, .about-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta h2, .about-cta h2 {
  color: var(--dark-navy);
  margin-bottom: var(--space-md);
}

.services-cta p, .about-cta p {
  color: var(--dark-navy);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta .btn, .about-cta .btn {
  background: var(--dark-navy);
  color: var(--gold);
  border: 2px solid var(--dark-navy);
}

.services-cta .btn:hover, .about-cta .btn:hover {
  background: var(--gold);
  color: var(--dark-navy);
}

/* Services Preview on Homepage */
.services-preview {
  padding: var(--space-2xl) 0;
  background: var(--dark-navy);
}

.services-preview .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.services-preview .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--deep-navy);
  border-color: rgba(212, 165, 116, 0.2);
}

.services-preview .service-card .btn {
  margin-top: auto;
}

.services-preview .services-cta {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.services-preview .services-cta h3 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.services-preview .services-cta p {
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
}

/* Contact Page Styles */
.contact-main {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.contact-intro {
  margin-bottom: var(--space-xl);
}

.contact-intro h2 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.contact-note {
  display: block;
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-top: 4px;
}

.service-areas {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
}

.service-areas h3 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.area-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--dark-gray);
  padding: var(--space-sm) 0;
}

.area-item i {
  color: var(--bright-blue);
  width: 20px;
}

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

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.dropdown-trigger i {
  font-size: 0.8rem;
  transition: transform var(--transition-normal);
}

.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-navy);
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: var(--space-md) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  text-decoration: none;
  color: #FFFFFF !important;
  transition: all var(--transition-normal);
  font-weight: 600 !important;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF !important;
  padding-left: calc(var(--space-lg) + 5px);
}

.dropdown-all {
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

.dropdown-divider {
  height: 1px;
  background: rgba(212, 165, 116, 0.3);
  margin: var(--space-sm) var(--space-md);
}

/* Active navigation link */
.nav-link.active {
  color: var(--gold) !important;
}

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

.dropdown-trigger.active {
  color: var(--gold) !important;
}

/* Individual Service Page Styles */
.service-header {
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--off-white);
}

.service-badge {
  background: var(--primary-gradient);
  color: var(--charcoal);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-md);
  box-shadow: var(--glow-shadow);
}

.header-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.service-overview {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.highlight-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-shadow);
}

.highlight-icon i {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.highlight-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.highlight-content p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.digital-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.window-title {
  color: var(--white);
  font-size: 0.9rem;
  margin-left: var(--space-md);
}

.variable {
  color: #8be9fd;
}

.detailed-services {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
}

.detailed-service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.detailed-service-card.featured {
  grid-column: span 2;
  background: var(--primary-gradient);
  color: var(--charcoal);
}

.detailed-service-card.featured::before {
  content: 'FLAGSHIP SERVICE';
  position: absolute;
  top: 0;
  right: -30px;
  background: var(--charcoal);
  color: var(--bright-blue);
  padding: var(--space-xs) var(--space-xl);
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  transform-origin: center;
}

.detailed-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.service-badge-small {
  background: var(--charcoal);
  color: var(--bright-blue);
  padding: 4px var(--space-sm);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.detailed-service-card.featured .service-badge-small {
  background: var(--charcoal);
  color: var(--bright-blue);
}

.detailed-service-card h3 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.service-intro {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  color: var(--dark-gray);
}

.detailed-service-card.featured .service-intro {
  color: rgba(44, 44, 44, 0.8);
}

.service-features {
  margin-bottom: var(--space-lg);
}

.service-features h4 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
  font-size: 1rem;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--dark-gray);
}

.service-features i {
  color: var(--bright-blue);
  font-size: 0.9rem;
  width: 16px;
}

.detailed-service-card.featured .service-features li {
  color: rgba(44, 44, 44, 0.8);
}

.process-steps {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.step {
  background: rgba(0, 102, 204, 0.2);
  color: var(--navy-blue);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.detailed-service-card.featured .step {
  background: rgba(44, 44, 44, 0.2);
  color: var(--charcoal);
}

.service-cta {
  padding: var(--space-2xl) 0;
  background: var(--primary-gradient);
  text-align: center;
}

.service-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.service-cta h2 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.service-cta p {
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.service-cta .btn {
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
}

.service-cta .btn:hover {
  background: var(--white);
  color: var(--charcoal);
}

.service-cta .btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.service-cta .btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Financial Services Page Specific Styles */
.financial-dashboard {
  background: var(--charcoal);
  border-radius: 15px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  width: 350px;
  color: var(--white);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--dark-gray);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--bright-blue);
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--medium-gray);
}

.status-dot.active {
  background: #27ca3f;
  animation: pulse-dot 2s infinite;
}

.dashboard-content {
  display: grid;
  gap: var(--space-md);
}

.metric-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--bright-blue);
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(254, 254, 254, 0.8);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.chart-placeholder {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 80px;
}

.chart-bar {
  width: 20px;
  background: var(--primary-gradient);
  border-radius: 2px 2px 0 0;
  animation: chart-grow 2s ease-out;
}

/* Tech Showcase */
.tech-showcase {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.tech-item {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--glow-shadow);
}

.tech-icon i {
  font-size: 1.8rem;
  color: var(--charcoal);
}

.tech-item h4 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.tech-item p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Case Study Preview */
.case-study-preview {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.case-badge {
  background: var(--primary-gradient);
  color: var(--charcoal);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.case-study-text h3 {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.case-study-text p {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  color: var(--dark-gray);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bright-blue);
  font-family: var(--font-display);
}

.metric-label {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
}

.transformation-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.before-after {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.before, .after {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.label {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.time-indicator {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.before .time-indicator {
  color: #e74c3c;
}

.after .time-indicator {
  color: var(--bright-blue);
}

.process-bars {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.process-bar {
  width: 20px;
  height: 30px;
  border-radius: 2px;
}

.process-bar.slow {
  background: #e74c3c;
}

.process-bar.fast {
  background: var(--bright-blue);
}

.arrow {
  font-size: 2rem;
  color: var(--bright-blue);
  font-weight: bold;
}

/* Process Improvement Page Styles */
.credentials-banner {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

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

.credentials-content h3 {
  color: var(--bright-blue);
  margin-bottom: var(--space-xl);
  font-size: 2rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.credential-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 102, 204, 0.2);
}

.credential-logo {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-weight: 700;
  color: var(--charcoal);
}

.credential-logo.chevron,
.credential-logo.hess,
.credential-logo.liberty {
  font-size: 0.9rem;
}

.credential-logo i {
  font-size: 1.5rem;
}

.credential-text h4 {
  margin-bottom: var(--space-xs);
  color: var(--bright-blue);
}

.credential-text p {
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.9rem;
}

.oil-rig-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.rig-structure {
  position: relative;
}

.rig-tower {
  width: 20px;
  height: 150px;
  background: var(--primary-gradient);
  margin: 0 auto 10px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

.rig-base {
  width: 80px;
  height: 30px;
  background: var(--navy-blue);
  border-radius: 5px;
  box-shadow: var(--shadow-md);
}

.efficiency-indicators {
  position: absolute;
  right: -120px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: indicator-appear 0.5s ease forwards;
}

.indicator:nth-child(1) { animation-delay: 0.5s; }
.indicator:nth-child(2) { animation-delay: 1s; }
.indicator:nth-child(3) { animation-delay: 1.5s; }

.indicator i {
  color: #27ca3f;
}

.results-showcase {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.result-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bright-blue);
}

.result-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--glow-shadow);
}

.result-icon i {
  font-size: 1.8rem;
  color: var(--charcoal);
}

.result-metric {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bright-blue);
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}

.result-label {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.result-context {
  color: var(--medium-gray);
  font-size: 0.9rem;
  font-style: italic;
}

.methodology-section {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.methodology-text h3 {
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
}

.methodology-text p {
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  color: var(--dark-gray);
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.methodology-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
  box-shadow: var(--glow-shadow);
}

.step-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.step-content p {
  color: var(--dark-gray);
  line-height: 1.6;
}

.certification-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--primary-gradient);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon i {
  font-size: 1.8rem;
  color: var(--bright-blue);
}

.cert-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.cert-level {
  font-size: 1.5rem;
  font-weight: 700;
}

.experience-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.exp-badge {
  padding: var(--space-md);
  background: var(--white);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bright-blue);
  font-size: 0.9rem;
}

/* Animations */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes chart-grow {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes indicator-appear {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Real Estate Page Styles */
.market-advantage {
  padding: var(--space-xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

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

.advantage-content h3 {
  color: var(--bright-blue);
  margin-bottom: var(--space-xl);
  font-size: 1.8rem;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 102, 204, 0.2);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.advantage-icon i {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.advantage-text h4 {
  margin-bottom: var(--space-xs);
  color: var(--bright-blue);
}

.advantage-text p {
  color: rgba(254, 254, 254, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.property-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.property-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.property-image {
  position: relative;
}

.before-tag, .after-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: 4px var(--space-sm);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.after-tag {
  background: #27ca3f;
  color: var(--white);
}

.property-placeholder {
  width: 120px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.before-state {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--white);
}

.after-state {
  background: var(--primary-gradient);
  color: var(--charcoal);
}

.property-placeholder i {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

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

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.condition {
  font-size: 0.8rem;
  opacity: 0.9;
}

.transformation-arrow {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-shadow);
}

.transformation-arrow i {
  font-size: 1.2rem;
  color: var(--charcoal);
}

.roi-display {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 15px;
  border: 2px solid var(--bright-blue);
}

.roi-metric {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.2rem;
}

.roi-label {
  color: var(--dark-gray);
  font-weight: 600;
}

.roi-value {
  color: var(--bright-blue);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.market-insights {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.insight-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--bright-blue);
}

.insight-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--glow-shadow);
}

.insight-icon i {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.insight-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.insight-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.success-metrics {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.metrics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.metrics-text h3 {
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
}

.metrics-text p {
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  color: var(--dark-gray);
}

.success-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.success-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border-left: 4px solid var(--bright-blue);
}

.success-item i {
  color: var(--bright-blue);
  font-size: 1.2rem;
  width: 20px;
}

.success-item span {
  color: var(--dark-gray);
  font-weight: 500;
}

.investment-calculator {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--bright-blue);
}

.calc-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.calc-header h4 {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.calc-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.calc-row.total {
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin: var(--space-sm) 0;
  font-weight: 600;
}

.calc-row.profit {
  background: rgba(39, 202, 63, 0.1);
  padding: var(--space-sm);
  border-radius: 8px;
  font-weight: 600;
}

.calc-row.roi {
  background: var(--primary-gradient);
  padding: var(--space-sm);
  border-radius: 8px;
  font-weight: 700;
  color: var(--charcoal);
}

.calc-label {
  color: var(--dark-gray);
}

.calc-value {
  font-weight: 600;
  color: var(--charcoal);
}

.calc-row.profit .calc-value {
  color: #27ca3f;
}

.calc-row.roi .calc-label,
.calc-row.roi .calc-value {
  color: var(--charcoal);
}

.calc-separator {
  height: 1px;
  background: var(--light-gray);
  margin: var(--space-md) 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .illumination-effect {
    width: 250px;
    height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .insight-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    padding: var(--space-lg) 0;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Mobile nav-link colors - dark text on white background */
  .nav-menu .nav-link {
    color: var(--dark-navy) !important;
  }

  .nav-menu .nav-link:hover {
    color: var(--gold) !important;
  }

  .nav-menu .nav-link.active {
    color: var(--gold) !important;
  }

  .nav-menu .dropdown-trigger {
    color: var(--dark-navy) !important;
  }

  .nav-menu .dropdown-trigger:hover {
    color: var(--gold) !important;
  }

  .nav-menu .dropdown-trigger.active {
    color: var(--gold) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    padding: 100px var(--space-sm) var(--space-lg);
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .logo-text .company-name {
    font-size: 1.2rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .rotating-text {
    font-size: 3rem !important; /* Force large size on mobile */
    min-width: 280px !important;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Academic Credentials Styling */
.credential-item.academic .credential-logo {
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-logo.duke {
  background: #003366;
  color: white;
}

.credential-logo.london {
  background: #002147;
  color: white;
}

.credential-logo.lss {
  background: var(--bright-blue);
  color: var(--charcoal);
}

.credential-logo.lss i {
  font-size: 1.2rem;
}

.founder-specialties ul li strong {
  color: var(--bright-blue);
}

/* Enhanced Visual Elements for Service Pages */

/* Digital Consulting Visual Enhancements */
.showcase-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.8), rgba(0, 102, 204, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all var(--transition-normal);
}

.showcase-image:hover .image-overlay {
  opacity: 1;
}

.overlay-badge {
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.overlay-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.analytics-preview {
  position: relative;
  margin-top: var(--space-lg);
  border-radius: 15px;
  overflow: hidden;
}

.analytics-image {
  width: 100%;
  height: auto;
  display: block;
}

.analytics-stats {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-sm);
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-top: 2px;
}

/* Success Stories Sections */
.success-stories {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl);
}

.consultation-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.story-badge {
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: 4px var(--space-sm);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.story-metrics {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-top: 4px;
}

/* Financial Services Enhancements */
.fintech-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.dashboard-preview {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.dashboard-image {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-overlay {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-md);
  border-radius: 15px;
  max-width: 250px;
}

.overlay-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.technology-stack {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: 15px;
}

.tech-header h4 {
  color: var(--bright-blue);
  margin-bottom: var(--space-md);
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.tech-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.tech-item i {
  color: var(--bright-blue);
  width: 20px;
}

/* Client Success Sections */
.client-success {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--charcoal), #3d3d3d);
  color: var(--white);
}

.success-showcase {
  display: grid;
  gap: var(--space-2xl);
}

.success-story {
  background: var(--white);
  color: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-metrics {
  position: relative;
}

.metrics-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.metrics-overlay {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

.metric-highlight {
  background: rgba(0, 102, 204, 0.95);
  color: var(--charcoal);
  padding: var(--space-sm);
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
}

.implementation-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.detail-item i {
  color: var(--bright-blue);
  width: 16px;
}

.timeline {
  margin-top: var(--space-lg);
}

.timeline-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background: var(--bright-blue);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin: 0;
}

.technology-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.tech-feature {
  text-align: center;
  padding: var(--space-lg);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.tech-icon i {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.tech-feature h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.tech-feature p {
  color: rgba(248, 248, 248, 0.8);
  font-size: 0.9rem;
}

/* Process Improvement Enhancements */
.oil-field-showcase {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.oil-field-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.field-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 44, 44, 0.7), rgba(0, 102, 204, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-lg);
}

.experience-markers {
  display: flex;
  gap: var(--space-md);
  margin-top: auto;
}

.marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.marker-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.marker.chevron .marker-logo {
  background: #005eb8;
  color: white;
}

.marker.hess .marker-logo {
  background: #00a651;
  color: white;
}

.marker.liberty .marker-logo {
  background: #ff6600;
  color: white;
}

.marker-name {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.certification-showcase {
  position: relative;
}

.cert-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.cert-stats {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
}

.cert-stats .stat-item {
  flex: 1;
}

/* Field Experience Sections */
.field-experience {
  padding: var(--space-2xl) 0;
  background: var(--charcoal);
  color: var(--white);
}

.field-stories {
  display: grid;
  gap: var(--space-2xl);
}

.story-card.major {
  background: var(--white);
  color: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.results-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.results-overlay {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.result-metric {
  background: rgba(0, 102, 204, 0.95);
  color: var(--charcoal);
  padding: var(--space-sm);
  border-radius: 10px;
  text-align: center;
  min-width: 70px;
}

.story-badges {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.badge {
  padding: 4px var(--space-sm);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge.chevron {
  background: #005eb8;
  color: white;
}

.badge.field {
  background: var(--bright-blue);
  color: var(--charcoal);
}

.improvement-metrics {
  margin: var(--space-lg) 0;
}

.before-after {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.metric-comparison {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--off-white);
  border-radius: 10px;
}

.before, .after {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.before .label, .after .label {
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.before .value, .after .value {
  font-size: 1.1rem;
  font-weight: 700;
}

.before .value {
  color: #e74c3c;
}

.after .value {
  color: #27ae60;
}

.arrow {
  font-size: 1.2rem;
  color: var(--bright-blue);
  font-weight: 700;
}

.implementation-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.highlight i {
  color: var(--bright-blue);
  width: 16px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.experience-card {
  background: rgba(248, 248, 248, 0.1);
  padding: var(--space-lg);
  border-radius: 15px;
  text-align: center;
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.company-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.company-logo.hess {
  background: #00a651;
  color: white;
}

.company-logo.liberty {
  background: #ff6600;
  color: white;
}

.company-logo.international {
  background: var(--bright-blue);
  color: var(--charcoal);
  font-size: 1.2rem;
}

.location {
  font-size: 0.8rem;
  color: rgba(248, 248, 248, 0.7);
}

.experience-card h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.experience-card p {
  color: rgba(248, 248, 248, 0.8);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.exp-result {
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(248, 248, 248, 0.2);
}

.result-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.result-label {
  font-size: 0.8rem;
  color: rgba(248, 248, 248, 0.7);
  margin-top: 4px;
  display: block;
}

/* Real Estate Enhancements */
.transformation-display {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.transformation-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.transformation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 44, 44, 0.8), rgba(0, 102, 204, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.transformation-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-md);
  border-radius: 15px;
}

.stat-before, .stat-after {
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

.stat-arrow {
  font-size: 1.5rem;
  color: var(--bright-blue);
  font-weight: 700;
}

.roi-highlight {
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: var(--space-sm) var(--space-md);
  border-radius: 20px;
  font-weight: 700;
}

.houston-market-insights {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: 15px;
}

.market-header h4 {
  color: var(--bright-blue);
  margin-bottom: var(--space-md);
}

.market-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.market-stat {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.market-stat i {
  color: var(--bright-blue);
  width: 20px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

/* Houston Success Sections */
.houston-success {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--charcoal), #3d3d3d);
  color: var(--white);
}

.success-portfolio {
  display: grid;
  gap: var(--space-2xl);
}

.portfolio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.market-analysis {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.market-chart {
  width: 100%;
  height: auto;
}

.analysis-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 44, 44, 0.9));
  padding: var(--space-lg);
}

.market-insight h4 {
  color: var(--bright-blue);
  margin-bottom: var(--space-sm);
}

.market-insight p {
  color: var(--white);
  font-size: 0.9rem;
}

.performance-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.metric-card {
  background: rgba(248, 248, 248, 0.1);
  padding: var(--space-lg);
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-icon {
  width: 50px;
  height: 50px;
  background: var(--bright-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.metric-icon i {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.metric-content .metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bright-blue);
}

.metric-content .metric-label {
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.8);
  margin-top: 4px;
}

.success-stories {
  background: var(--white);
  color: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 20px;
}

.success-story.featured {
  position: relative;
  padding-top: calc(var(--space-xl) + 30px);
}

.success-story.featured .story-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
}

.property-info {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item.profit {
  background: rgba(0, 102, 204, 0.2);
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

.info-item .label {
  font-weight: 500;
  color: var(--dark-gray);
}

.info-item .value {
  font-weight: 700;
  color: var(--charcoal);
}

.info-item.profit .value {
  color: var(--bright-blue);
  font-size: 1.1rem;
}

.neighborhood-highlights {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: 15px;
}

.neighborhood-highlights h4 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.neighborhood-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm);
  background: var(--white);
  border-radius: 10px;
}

.neighborhood-name {
  font-weight: 500;
  color: var(--charcoal);
}

.neighborhood-roi {
  font-weight: 600;
  color: var(--bright-blue);
  font-size: 0.9rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .story-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .success-story {
    grid-template-columns: 1fr;
  }

  .portfolio-stats {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .technology-highlights {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* C&L MATCH PLATFORM STYLES */
/* ============================================ */

/* C&L Match Container */
.candlmatch-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--white);
  min-height: 100vh;
}

/* Header Section */
.header-section {
  text-align: center;
  padding: 120px var(--space-md) var(--space-2xl);
  background: var(--dark-navy);
  color: var(--white);
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}

.header-section h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--white) !important;
}

.header-section .tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* Step Management */
.step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--glow-shadow);
  border-color: var(--bright-blue);
}

.service-card:hover::before {
  opacity: 0.05;
}

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

.service-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

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

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--bright-blue);
  font-weight: 700;
  font-family: var(--font-display);
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 75px;
  color: var(--dark-gray);
}

.starting-price {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 25px;
  font-family: var(--font-display);
}

.select-btn {
  background: var(--primary-gradient);
  color: var(--charcoal);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--glow-shadow);
}

.select-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

/* Progress Container */
.progress-container {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.back-btn {
  background: transparent;
  border: 2px solid var(--bright-blue);
  color: var(--bright-blue);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-bottom: 20px;
}

.back-btn:hover {
  background: var(--bright-blue);
  color: var(--charcoal);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--light-gray);
  z-index: 0;
}

.progress-step:first-child::before {
  display: none;
}

.progress-step.completed::before {
  background: var(--bright-blue);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--medium-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-normal);
}

.progress-step.active .step-number {
  background: var(--bright-blue);
  color: var(--charcoal);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
  transform: scale(1.1);
}

.progress-step.completed .step-number {
  background: var(--bright-blue);
  color: var(--charcoal);
}

.step-label {
  font-size: 14px;
  color: var(--medium-gray);
  font-weight: 500;
}

.progress-step.active .step-label {
  color: var(--bright-blue);
  font-weight: 700;
}

/* Form Container */
.form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--bright-blue);
  text-align: center;
  font-family: var(--font-display);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 8px;
  font-size: 15px;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

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

.checkbox-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-option input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-option label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--medium-gray);
  margin-top: 5px;
}

.error-message {
  display: none;
  color: #ef4444;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}

.submit-btn {
  background: var(--primary-gradient);
  color: var(--charcoal);
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--glow-shadow);
  width: 100%;
  margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Pricing Container */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--bright-blue);
  font-family: var(--font-display);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Pricing Tiers */
.pricing-tier {
  background: var(--white);
  border: 3px solid var(--light-gray);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

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

.pricing-tier.recommended {
  border-color: var(--bright-blue);
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  transform: scale(1.05);
  box-shadow: var(--glow-shadow);
}

.pricing-tier.selected {
  border-color: var(--bright-blue);
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  box-shadow: var(--glow-shadow);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bright-blue);
  color: var(--charcoal);
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tier-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.tier-description {
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.tier-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--bright-blue);
  margin: 25px 0;
  font-family: var(--font-display);
}

.tier-price::before {
  content: '$';
  font-size: 32px;
  vertical-align: super;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.tier-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 30px;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '✦';
  color: var(--bright-blue);
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.select-tier-btn {
  background: var(--primary-gradient);
  color: var(--charcoal);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.select-tier-btn:hover {
  transform: scale(1.02);
}

/* Ancillary Services */
.ancillary-services {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.ancillary-services h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--charcoal);
  font-family: var(--font-display);
}

.ancillary-option {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.ancillary-option:hover {
  border-color: var(--bright-blue);
  background: var(--off-white);
}

.ancillary-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  cursor: pointer;
}

.ancillary-option label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  margin: 0;
}

.service-name {
  font-weight: 600;
  color: var(--charcoal);
}

.service-price {
  color: var(--navy-blue);
  font-weight: 700;
}

/* Total Calculator */
.total-calculator {
  background: var(--primary-gradient);
  color: var(--charcoal);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--glow-shadow);
}

.total-calculator h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-family: var(--font-display);
}

#running-total {
  font-size: 56px;
  font-weight: 800;
  display: block;
  margin: 10px 0 30px;
  font-family: var(--font-display);
}

.total-calculator .submit-btn {
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
}

.total-calculator .submit-btn:hover {
  background: var(--dark-gray);
}

/* Review Container */
.review-container {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.review-container h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--bright-blue);
  text-align: center;
  font-family: var(--font-display);
}

.summary-section {
  border-bottom: 2px solid var(--light-gray);
  padding: 25px 0;
}

.summary-section:last-child {
  border-bottom: none;
}

.summary-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--charcoal);
  font-family: var(--font-display);
}

.summary-section ul {
  list-style: none;
  padding: 0;
}

.summary-section li {
  padding: 8px 0;
  color: var(--dark-gray);
}

.total-section {
  background: var(--off-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: none;
}

.total-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--bright-blue);
  font-family: var(--font-display);
}

/* Success Container */
.success-container {
  background: var(--white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bright-blue);
  color: var(--charcoal);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-container h1 {
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 15px;
  font-family: var(--font-display);
}

.success-container > p {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 40px;
}

.order-summary {
  background: var(--off-white);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: left;
}

.order-summary h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--bright-blue);
  font-family: var(--font-display);
}

.next-steps {
  text-align: left;
  margin: 40px 0;
}

.next-steps h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--charcoal);
  font-family: var(--font-display);
}

.next-steps ol {
  padding-left: 20px;
}

.next-steps li {
  padding: 10px 0;
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 40px;
  font-size: 16px;
  color: var(--dark-gray);
}

.contact-info a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
}

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

/* Responsive Design for C&L Match */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-tier.recommended {
    transform: scale(1);
  }
  
  .form-container,
  .review-container,
  .success-container {
    padding: 30px 20px;
  }
  
  .header-section h1 {
    font-size: 32px;
  }
  
  .progress-steps {
    flex-wrap: wrap;
  }
  
  .progress-step {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
  
  .progress-step::before {
    display: none;
  }
  
  .step-label {
    font-size: 12px;
  }
  
  .tier-price {
    font-size: 42px;
  }
  
  #running-total {
    font-size: 42px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .analytics-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: var(--space-md);
  }

  .experience-markers {
    justify-content: center;
  }

  .transformation-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .performance-metrics {
    grid-template-columns: 1fr;
  }

  .neighborhoods {
    grid-template-columns: 1fr;
  }

  .implementation-highlights {
    grid-template-columns: 1fr;
  }

  .tech-items {
    grid-template-columns: 1fr;
  }
}