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

:root {
  --charcoal: #1F2937;
  --purple: #6B21A8;
  --teal: #059669;
  --orange: #F59E0B;
  --bg-light: #F3F4F6;
  --white: #FFFFFF;
  --text-dark: #111827;
  --text-gray: #6B7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--purple);
}

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

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

.nav-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
  overflow: hidden;
}

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

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.nav-dropdown-item:hover {
  background: var(--bg-light);
}

.nav-dropdown-item::after {
  display: none;
}

.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  background: rgba(5, 150, 105, 0.18);
}

.nav-dropdown-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
}

.nav-dropdown-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-item span {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.nav-dropdown-item small {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 400;
}

.nav-dropdown-item:hover span {
  color: var(--teal);
}

.nav-dropdown-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  padding: 10px 20px;
  background: var(--bg-light);
}

.nav-dropdown-footer a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.nav-dropdown-footer a::after {
  display: none;
}

.nav-dropdown-footer a:hover {
  color: var(--charcoal);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--teal);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s ease;
  position: relative;
}

.nav-cta::before {
  content: '>';
  font-family: 'Courier New', monospace;
  font-weight: 700;
  margin-right: 0.5rem;
  color: var(--white);
  animation: blink 1s infinite;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--charcoal);
  color: var(--white) !important;
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 41, 55, 0.3);
}

.nav-cta:hover::before {
  color: var(--teal);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn::before {
  content: '>';
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--white);
  animation: blink 1s infinite;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.4);
}

.btn:hover::before {
  color: var(--teal);
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 5px 20px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.4);
}

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

.btn-secondary::before {
  color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.3);
}

.btn-secondary:hover::before {
  color: var(--teal);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 1s ease 0.3s backwards;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: floatCard 4s infinite ease-in-out;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-1 {
  top: 0%;
  left: 0%;
  animation-delay: 0s;
  border-top: 4px solid var(--purple);
}

.card-2 {
  top: 5%;
  right: 0%;
  animation-delay: 0.7s;
  border-top: 4px solid var(--teal);
}

.card-3 {
  top: 32%;
  left: 0%;
  animation-delay: 1.4s;
  border-top: 4px solid var(--orange);
}

.card-4 {
  top: 38%;
  right: 0%;
  animation-delay: 2.1s;
  border-top: 4px solid var(--teal);
}

.card-5 {
  bottom: 15%;
  left: 0%;
  animation-delay: 2.8s;
  border-top: 4px solid var(--purple);
}

.card-6 {
  bottom: 10%;
  right: 5%;
  animation-delay: 3.5s;
  border-top: 4px solid var(--orange);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.card-icon svg {
  stroke: var(--purple);
}

.card-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
  white-space: nowrap;
}

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

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

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

/* Section Common Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--charcoal), var(--teal));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* ============================================================
   STATS TICKER (NYSE-style)
   ============================================================ */

.stats-ticker {
  background: #0f172a;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(5, 150, 105, 0.3);
  border-bottom: 1px solid rgba(5, 150, 105, 0.3);
}

.stats-ticker::before,
.stats-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.stats-ticker::before {
  left: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}

.stats-ticker::after {
  right: 0;
  background: linear-gradient(to left, #0f172a, transparent);
}

.stats-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}

.stats-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-ticker-content {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  gap: 0;
  flex-shrink: 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 0 0.5rem;
}

.ticker-service {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  padding: 0.25rem 0.6rem;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 4px;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.ticker-stat {
  font-size: 0.82rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.ticker-value {
  font-weight: 700;
  color: #e2e8f0;
  font-size: 0.85rem;
  margin-right: 0.2rem;
}

.ticker-divider {
  color: #334155;
  font-size: 0.75rem;
}

.ticker-separator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  flex-shrink: 0;
  margin: 0 1.5rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .stats-ticker-track {
    animation-duration: 45s;
  }

  .ticker-item {
    gap: 0.5rem;
  }

  .ticker-service {
    font-size: 0.7rem;
  }

  .ticker-stat {
    font-size: 0.72rem;
  }

  .ticker-value {
    font-size: 0.75rem;
  }
}

/* Futuristic Services Showcase Section */
.services-showcase {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0a0f1a 100%);
  min-height: 100vh;
}

.services-showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(5, 150, 105, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 150, 105, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: glowDrift 20s ease-in-out infinite;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15), transparent 70%);
  top: 10%;
  left: 20%;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1), transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: 10s;
}

@keyframes glowDrift {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(50px, -30px);
  }
  66% {
    transform: translate(-30px, 40px);
  }
}

.services-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header-minimal {
  text-align: center;
  margin-bottom: 2rem;
}

.services-showcase-title {
  color: var(--white) !important;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-showcase-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Floating Service Orbs */
.floating-services-container {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 2rem 0;
}

.service-orb {
  position: absolute;
  width: 130px;
  height: 130px;
  cursor: pointer;
  z-index: 5;
}

.orb-glow {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.6), transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  animation: orbPulse 3s ease-in-out infinite;
}

.service-orb:hover .orb-glow {
  opacity: 1;
}

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

.orb-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 2px solid rgba(5, 150, 105, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow:
    0 0 40px rgba(5, 150, 105, 0.25),
    0 0 20px rgba(5, 150, 105, 0.15),
    inset 0 0 30px rgba(5, 150, 105, 0.1);
}

.service-orb:hover .orb-content {
  border-color: var(--teal);
  transform: scale(1.1);
  box-shadow:
    0 0 50px rgba(5, 150, 105, 0.3),
    inset 0 0 30px rgba(5, 150, 105, 0.1);
}

.orb-content svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}

.service-orb:hover .orb-content svg {
  color: var(--white);
  transform: scale(1.1);
}

.orb-content span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Individual orb floating animations - Grid layout for 12 orbs */
.orb-float-1 {
  top: 2%;
  left: 5%;
  animation: floatPath1 25s ease-in-out infinite;
}

.orb-float-2 {
  top: 2%;
  left: 30%;
  animation: floatPath2 28s ease-in-out infinite;
}

.orb-float-3 {
  top: 2%;
  right: 30%;
  animation: floatPath3 23s ease-in-out infinite;
}

.orb-float-4 {
  top: 2%;
  right: 5%;
  animation: floatPath4 26s ease-in-out infinite;
}

.orb-float-5 {
  top: 35%;
  left: 3%;
  animation: floatPath5 30s ease-in-out infinite;
}

.orb-float-6 {
  top: 35%;
  left: 25%;
  animation: floatPath6 27s ease-in-out infinite;
}

.orb-float-7 {
  top: 35%;
  right: 25%;
  animation: floatPath7 24s ease-in-out infinite;
}

.orb-float-8 {
  top: 35%;
  right: 3%;
  animation: floatPath8 29s ease-in-out infinite;
}

.orb-float-9 {
  top: 68%;
  left: 8%;
  animation: floatPath9 26s ease-in-out infinite;
}

.orb-float-10 {
  top: 68%;
  left: 33%;
  animation: floatPath10 22s ease-in-out infinite;
}

.orb-float-11 {
  top: 68%;
  right: 33%;
  animation: floatPath11 28s ease-in-out infinite;
}

.orb-float-12 {
  top: 68%;
  right: 8%;
  animation: floatPath12 25s ease-in-out infinite;
}

@keyframes floatPath1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, 20px); }
  50% { transform: translate(5px, 35px); }
  75% { transform: translate(-10px, 15px); }
}

@keyframes floatPath2 {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-20px, 25px); }
  40% { transform: translate(10px, 40px); }
  60% { transform: translate(25px, 20px); }
  80% { transform: translate(5px, 10px); }
}

@keyframes floatPath3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, 30px); }
  66% { transform: translate(-15px, 25px); }
}

@keyframes floatPath4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-25px, 20px); }
  50% { transform: translate(-15px, 40px); }
  75% { transform: translate(10px, 25px); }
}

@keyframes floatPath5 {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(20px, -15px); }
  40% { transform: translate(35px, 10px); }
  60% { transform: translate(15px, 25px); }
  80% { transform: translate(5px, 10px); }
}

@keyframes floatPath6 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-15px, -20px); }
  66% { transform: translate(20px, 15px); }
}

@keyframes floatPath7 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -25px); }
  50% { transform: translate(-10px, -15px); }
  75% { transform: translate(-20px, 10px); }
}

@keyframes floatPath8 {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-30px, -10px); }
  40% { transform: translate(-20px, 15px); }
  60% { transform: translate(-5px, 30px); }
  80% { transform: translate(-15px, 10px); }
}

@keyframes floatPath9 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -20px); }
  66% { transform: translate(10px, -35px); }
}

@keyframes floatPath10 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, -30px); }
  50% { transform: translate(15px, -20px); }
  75% { transform: translate(25px, -10px); }
}

@keyframes floatPath11 {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(20px, -15px); }
  40% { transform: translate(10px, -35px); }
  60% { transform: translate(-15px, -25px); }
  80% { transform: translate(-5px, -10px); }
}

@keyframes floatPath12 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-25px, -20px); }
  66% { transform: translate(-10px, -40px); }
}

/* Featured orb special styling */
.orb-featured .orb-content {
  background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.3), rgba(15, 23, 42, 0.95));
  border-color: var(--teal);
}

.orb-glow-featured {
  opacity: 0.5 !important;
  animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.services-cta-wrapper {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.btn-view-services {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  gap: 0.5rem;
}

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

.btn-view-services svg {
  transition: transform 0.3s ease;
}

.btn-view-services:hover svg {
  transform: translateX(5px);
}

/* Services Showcase Responsive */
@media (max-width: 1200px) {
  .floating-services-container {
    height: 600px;
  }

  .service-orb {
    width: 100px;
    height: 100px;
  }

  .orb-content svg {
    width: 26px;
    height: 26px;
  }

  .orb-content span {
    font-size: 0.65rem;
  }

  .orb-float-1 { top: 0; left: 3%; }
  .orb-float-2 { top: 0; left: 28%; }
  .orb-float-3 { top: 0; right: 28%; left: auto; }
  .orb-float-4 { top: 0; right: 3%; left: auto; }
  .orb-float-5 { top: 33%; left: 3%; }
  .orb-float-6 { top: 33%; left: 28%; }
  .orb-float-7 { top: 33%; right: 28%; left: auto; }
  .orb-float-8 { top: 33%; right: 3%; left: auto; }
  .orb-float-9 { top: 66%; left: 3%; }
  .orb-float-10 { top: 66%; left: 28%; }
  .orb-float-11 { top: 66%; right: 28%; left: auto; }
  .orb-float-12 { top: 66%; right: 3%; left: auto; }
}

@media (max-width: 900px) {
  .services-showcase-title {
    font-size: 2.2rem;
  }

  .floating-services-container {
    height: 800px;
  }

  .service-orb {
    width: 90px;
    height: 90px;
  }

  .orb-content svg {
    width: 24px;
    height: 24px;
  }

  .orb-content span {
    font-size: 0.6rem;
  }

  .orb-float-1 { top: 0; left: 5%; }
  .orb-float-2 { top: 0; left: 38%; }
  .orb-float-3 { top: 0; right: 5%; left: auto; }
  .orb-float-4 { top: 17%; left: 5%; }
  .orb-float-5 { top: 17%; left: 38%; }
  .orb-float-6 { top: 17%; right: 5%; left: auto; }
  .orb-float-7 { top: 34%; left: 5%; }
  .orb-float-8 { top: 34%; left: 38%; }
  .orb-float-9 { top: 34%; right: 5%; left: auto; }
  .orb-float-10 { top: 51%; left: 5%; }
  .orb-float-11 { top: 51%; left: 38%; }
  .orb-float-12 { top: 51%; right: 5%; left: auto; }
}

@media (max-width: 600px) {
  .services-showcase {
    padding: 4rem 1rem;
  }

  .services-showcase-title {
    font-size: 1.8rem;
  }

  .floating-services-container {
    height: 1000px;
  }

  .service-orb {
    width: 80px;
    height: 80px;
  }

  .orb-content svg {
    width: 22px;
    height: 22px;
  }

  .orb-content span {
    font-size: 0.55rem;
  }

  .orb-float-1 { top: 0; left: 8%; }
  .orb-float-2 { top: 0; right: 8%; left: auto; }
  .orb-float-3 { top: 9%; left: 8%; }
  .orb-float-4 { top: 9%; right: 8%; left: auto; }
  .orb-float-5 { top: 18%; left: 8%; }
  .orb-float-6 { top: 18%; right: 8%; left: auto; }
  .orb-float-7 { top: 27%; left: 8%; }
  .orb-float-8 { top: 27%; right: 8%; left: auto; }
  .orb-float-9 { top: 36%; left: 8%; }
  .orb-float-10 { top: 36%; right: 8%; left: auto; }
  .orb-float-11 { top: 45%; left: 8%; }
  .orb-float-12 { top: 45%; right: 8%; left: auto; }
}

/* Service Modal Styles */
.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.service-modal {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  border: 2px solid rgba(5, 150, 105, 0.4);
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow:
    0 0 60px rgba(5, 150, 105, 0.2),
    0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-modal-overlay.active .service-modal {
  transform: scale(1) translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.service-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(90deg);
}

.service-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.3), rgba(5, 150, 105, 0.1));
  border: 2px solid rgba(5, 150, 105, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(5, 150, 105, 0.3);
}

.service-modal-icon svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.service-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.service-modal-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.service-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 600px) {
  .service-modal {
    padding: 2rem;
    margin: 1rem;
  }

  .service-modal-title {
    font-size: 1.5rem;
  }

  .service-modal-icon {
    width: 60px;
    height: 60px;
  }

  .service-modal-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Legacy service card styles (kept for services page) */
.service-card-legacy {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--bg-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-legacy:hover {
  border-color: var(--teal);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(107, 33, 168, 0.15);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white);
  border: none;
  transform: scale(1.02);
}

.service-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(107, 33, 168, 0.3);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card.featured .service-icon {
  background: var(--white);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.service-card.featured .service-icon svg {
  color: var(--purple);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Why Us Section */
.why-us {
  padding: 8rem 2rem;
  background: var(--bg-light);
  position: relative;
}

.why-us-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  border-left-color: var(--teal);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.7;
}

.why-us-visual {
  position: relative;
  height: 500px;
}

.stat-card {
  position: absolute;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border-top: 5px solid var(--purple);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.stat-1 {
  top: 10%;
  left: 0;
  border-top-color: var(--purple);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.stat-2 {
  top: 40%;
  right: 0;
  border-top-color: var(--teal);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-3 {
  bottom: 10%;
  left: 20%;
  border-top-color: var(--orange);
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* About Section */
.about {
  padding: 8rem 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s infinite ease-in-out;
}

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

.about-logo {
  position: relative;
  width: 300px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: rotate3d 20s infinite linear;
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin: 2rem 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.highlight-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.highlight-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Carousel inside About Section */
.carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.carousel-track {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.carousel-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-page-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.carousel-page-exit {
  opacity: 0;
  transform: translateX(-40px);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(31, 41, 55, 0.3);
}

.carousel-dot-active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.2);
}

.carousel-progress {
  flex: 1;
  height: 3px;
  background: rgba(31, 41, 55, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--teal);
  border-radius: 3px;
}

/* Who We Are Section */
.who-we-are {
  padding: 6rem 2rem;
  background: var(--white);
}

.who-we-are-container {
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.who-we-are-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
}

.who-we-are-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
}

.who-we-are-body strong {
  color: var(--charcoal);
  font-weight: 700;
}

.who-we-are-subheading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--teal);
}

.who-we-are-closing {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
}

@media (max-width: 768px) {
  .who-we-are-title {
    font-size: 1.6rem;
  }
  .who-we-are-subheading {
    font-size: 1.15rem;
  }
  .who-we-are-body p {
    font-size: 0.95rem;
  }
}

/* Industries Page */
.industries-hero {
  padding: 10rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, #0f172a 100%);
}

.industries-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.industries-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
}

.industries-hero-bg .shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.industries-hero-bg .shape-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
  animation: float 18s infinite ease-in-out reverse;
}

.industries-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.industries-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.industries-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.industries-grid-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.industries-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.industry-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.industry-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.06);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
}

.industry-card-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.industry-card-body {
  padding: 1.5rem;
}

.industry-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.industry-card-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-gray);
}

.industries-cta {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
}

.industries-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.industries-cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.industries-cta-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.industries-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

@media (max-width: 640px) {
  .industries-hero-title {
    font-size: 2rem;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industries-cta-content h2 {
    font-size: 1.8rem;
  }
}

/* Process Section */
.process-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.process-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.process-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(31, 41, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.process-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.process-ring-wrapper {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}

.process-ring {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

.ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ring-progress {
  animation: ringDraw 2s ease-out 0.3s forwards;
}

@keyframes ringDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.ring-arrow {
  opacity: 0;
  animation: arrowFade 0.4s ease forwards;
}

.ring-arrow-2 { animation-delay: 0.8s; }
.ring-arrow-3 { animation-delay: 1.2s; }
.ring-arrow-4 { animation-delay: 1.6s; }

@keyframes arrowFade {
  to { opacity: 1; }
}

.ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ring-center-text {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ring-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: nodeReveal 0.5s ease forwards;
}

.ring-node-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.ring-node-2 {
  top: 22%;
  right: -24px;
  animation-delay: 0.7s;
}

.ring-node-3 {
  bottom: 5%;
  right: 8%;
  animation-delay: 0.9s;
}

.ring-node-4 {
  bottom: 5%;
  left: 8%;
  animation-delay: 1.1s;
}

.ring-node-5 {
  top: 22%;
  left: -24px;
  animation-delay: 1.3s;
}

@keyframes nodeReveal {
  to {
    opacity: 1;
  }
}

.node-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.node-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(5, 150, 105, 0.2);
}

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

.node-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  white-space: nowrap;
}

.ring-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 400px;
}

.ring-detail-card {
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  animation: detailSlide 0.5s ease forwards;
  position: relative;
  padding-left: 3.2rem;
}

.ring-detail-1 { animation-delay: 0.5s; }
.ring-detail-2 { animation-delay: 0.65s; }
.ring-detail-3 { animation-delay: 0.8s; }
.ring-detail-4 { animation-delay: 0.95s; }
.ring-detail-5 { animation-delay: 1.1s; }

@keyframes detailSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ring-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.detail-num {
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.5;
}

.ring-detail-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.ring-detail-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.process-cta-wrapper {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .process-ring-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .process-ring {
    width: 420px;
    height: 420px;
  }

  .ring-details {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .ring-detail-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 5rem 1.25rem;
  }

  .process-ring {
    width: 340px;
    height: 340px;
  }

  .ring-center {
    width: 110px;
    height: 110px;
  }

  .ring-center-text {
    font-size: 0.72rem;
  }

  .node-icon {
    width: 44px;
    height: 44px;
  }

  .node-icon svg {
    width: 20px;
    height: 20px;
  }

  .node-badge {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }

  .node-label {
    font-size: 0.68rem;
  }

  .ring-node-2 {
    right: -16px;
  }

  .ring-node-5 {
    left: -16px;
  }

  .ring-detail-card {
    flex: 1 1 100%;
  }

  .process-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 4rem 1rem;
  }

  .process-ring {
    width: 280px;
    height: 280px;
  }

  .ring-center {
    width: 90px;
    height: 90px;
  }

  .ring-center-text {
    font-size: 0.65rem;
  }

  .node-icon {
    width: 36px;
    height: 36px;
  }

  .node-icon svg {
    width: 16px;
    height: 16px;
  }

  .node-badge {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .node-label {
    font-size: 0.6rem;
  }

  .ring-node-2 {
    right: -12px;
  }

  .ring-node-5 {
    left: -12px;
  }

  .ring-node-3 {
    right: 2%;
  }

  .ring-node-4 {
    left: 2%;
  }
}

/* CTA Secondary Links */
.cta-secondary-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  justify-content: center;
}

.cta-secondary-link:hover {
  color: #fff;
}

.cta-secondary-link svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s infinite ease-in-out;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.cta-shape-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.btn-cta {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta::before {
  color: var(--teal);
}

.btn-cta:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover::before {
  color: var(--teal);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}

.btn-cta-secondary:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-book-cta {
  background: linear-gradient(135deg, #f0f9f6, #e8f4f8);
  border: 1px solid var(--teal);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-book-cta h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-book-cta p {
  color: #555;
  margin-bottom: 1.25rem;
}

.h-captcha {
  margin-bottom: 1.5rem;
}

/* Thank You Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: #e6f9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #10b981;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.modal-content p {
  color: #555;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Newsletter CTA (inside gradient CTA section) */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.newsletter-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.newsletter-cta-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.newsletter-input-group input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  min-width: 0;
}

.newsletter-input-group .newsletter-btn {
  border-radius: 0;
  padding: 0.9rem 1.5rem;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* Newsletter standalone section (light background) */
.newsletter-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
}

.newsletter-section-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.newsletter-section-subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form-light .newsletter-input-group {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.newsletter-form-light .newsletter-input-group input[type="email"] {
  background: #fff;
}

@media (max-width: 480px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-input-group input[type="email"] {
    border-radius: 8px 8px 0 0;
  }

  .newsletter-input-group .newsletter-btn {
    border-radius: 0 0 8px 8px;
  }

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

  .newsletter-section {
    padding: 3rem 1.25rem;
  }

  .newsletter-section-title {
    font-size: 1.4rem;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.4;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.toast.toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.toast-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.toast-message {
  flex: 1;
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.2rem;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast {
    max-width: 100%;
  }
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 100px;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .footer-contact-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-brand .footer-contact-info a {
  color: inherit;
  text-decoration: none;
}

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

.footer-links {
  display: contents;
}

.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--teal);
  padding-left: 10px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Legal Pages */
.legal-page {
  padding: 8rem 2rem 4rem;
  background: var(--white);
}

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

.legal-container h1 {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.legal-container h2 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-container h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-container p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-container ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  color: #444;
  line-height: 1.8;
}

.legal-container ul li {
  margin-bottom: 0.4rem;
}

.legal-back-home {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

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

  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
  }

  .floating-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none;
  }

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

  .why-us-container {
    grid-template-columns: 1fr;
  }

  .why-us-visual {
    height: 350px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

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

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.nav-open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: hidden !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0s;
    padding: 0;
  }

  .nav-dropdown.mobile-open .nav-dropdown-menu {
    visibility: visible !important;
    max-height: 600px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: hidden !important;
    max-height: 0;
  }

  .nav-dropdown.mobile-open:hover .nav-dropdown-menu {
    visibility: visible !important;
    max-height: 600px;
  }

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    padding: 0.5rem 0;
  }

  .nav-dropdown-footer {
    background: transparent;
    padding: 0.5rem 0;
    border-top: none;
  }

  .nav-cta,
  .nav-cta-assessment {
    margin-top: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }

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

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

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

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

  .cta-title {
    font-size: 2.2rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-logo img {
    height: 40px;
  }

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

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

  .services,
  .why-us,
  .about,
  .cta {
    padding: 4rem 1rem;
  }

  .floating-card {
    padding: 0.75rem;
  }

  .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .card-icon svg {
    width: 22px;
    height: 22px;
  }

  .card-text {
    font-size: 0.75rem;
  }

  .hero-visual {
    gap: 0.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
}

/* Contact Page Styles */
.contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.contact-hero-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: 10%;
}

.contact-hero-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  bottom: -50px;
  left: 10%;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.contact-main {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--charcoal), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.contact-method-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.contact-method-content a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-method-content a:hover {
  color: var(--charcoal);
}

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

.emergency-support {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 16px;
  align-items: center;
}

.emergency-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.emergency-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.emergency-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.emergency-content .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--bg-light);
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

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

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

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

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

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 35vh;
  }

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

  .contact-subtitle {
    font-size: 1rem;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .emergency-support {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-main {
    padding: 3rem 1rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

/* Services Page Styles */
.services-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.services-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.services-hero-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: 10%;
}

.services-hero-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  bottom: -50px;
  left: 10%;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.services-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.about-hero-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  left: 10%;
}

.about-hero-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  bottom: -50px;
  right: 10%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.nav-active {
  color: var(--teal) !important;
  font-weight: 600;
}

.services-full {
  padding: 5rem 2rem;
  background: var(--white);
}

.services-full-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: 5rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-light);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--charcoal), var(--teal));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.category-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.category-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.category-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
  background: var(--teal);
}

.service-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  transition: all 0.3s ease;
}

.service-item:hover .service-item-icon svg {
  color: var(--white);
}

.service-item-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

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

.compliance-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.compliance-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.compliance-intro {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-top: 1rem;
}

.compliance-frameworks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.framework-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.framework-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.framework-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.framework-full {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.framework-card > p:not(.framework-full) {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.framework-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.framework-industries span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.framework-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.framework-link:hover {
  color: #047857;
  text-decoration: underline;
}

.compliance-other-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.compliance-other-banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.compliance-other-banner a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.compliance-other-banner a:hover {
  text-decoration: underline;
}

.compliance-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}

.compliance-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.compliance-cta p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.compliance-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.compliance-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.compliance-services {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.compliance-services-header {
  margin-bottom: 2.5rem;
}

.compliance-services-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.compliance-services-header p {
  font-size: 1rem;
  color: var(--text-gray);
}

.compliance-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.compliance-service-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(13, 148, 136, 0.15) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.compliance-service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.compliance-service-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.compliance-service-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.services-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  text-align: center;
}

.services-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.services-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.2rem;
  }

  .services-hero-subtitle {
    font-size: 1rem;
  }

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

  .category-header h2 {
    font-size: 1.6rem;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .service-item-icon {
    margin: 0 auto;
  }

  .services-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .services-full {
    padding: 3rem 1rem;
  }

  .services-cta {
    padding: 4rem 1rem;
  }
}

/* ============================================================
   SERVICES OVERVIEW PAGE - Alternating Left/Right Layout
   ============================================================ */

.services-overview {
  padding: 0;
}

.service-overview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.service-overview-row.reverse {
  direction: rtl;
}

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

.service-overview-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.service-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-overview-row:hover .service-overview-image img {
  transform: scale(1.04);
}

.service-overview-content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-overview-row:nth-child(even) .service-overview-content {
  background: var(--bg-light);
}

.service-overview-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.service-overview-content p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-overview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.service-overview-list li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-left: 1.4rem;
  position: relative;
}

.service-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.service-overview-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  width: fit-content;
  transition: all 0.25s ease;
}

.service-overview-btn:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
  gap: 4px;
}

/* ============================================================
   SERVICE DETAIL HERO
   ============================================================ */

.service-detail-hero {
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--charcoal);
}

.service-detail-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.service-breadcrumb:hover {
  color: var(--white);
}

.service-detail-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}

.service-detail-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   SERVICE DETAIL INTRO
   ============================================================ */

.service-detail-intro {
  background: var(--charcoal);
  padding: 4rem 2rem;
}

.service-detail-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.service-detail-intro-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-detail-intro-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 620px;
}

.service-detail-stats {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}

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

.service-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.service-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 90px;
  text-align: center;
}

/* ============================================================
   SERVICE DETAIL CARDS - Modern Subcard Format
   ============================================================ */

.service-detail-cards {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.service-detail-cards-container {
  max-width: 1300px;
  margin: 0 auto;
}

.service-detail-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 3rem;
  text-align: center;
}

.service-subcards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-subcard {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-subcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-subcard-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0f1f3;
}

.service-subcard-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-subcard:hover .service-subcard-image img {
  transform: scale(1.07);
}

.service-subcard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(5, 150, 105, 0.8) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-subcard:hover .service-subcard-overlay {
  opacity: 1;
}

.service-subcard-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.service-subcard-body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-subcard-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.service-subcard-body p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  flex: 1;
}

.service-subcard-featured {
  position: relative;
  border: 2px solid var(--teal);
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
}

.service-subcard-featured:hover {
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.2);
}

.service-subcard-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

/* ============================================================
   SERVICE DETAIL - ADDITIONAL CONTENT SECTIONS
   ============================================================ */

.service-ideal-for {
  padding: 5rem 2rem;
  background: var(--white);
}

.service-ideal-for-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-ideal-for h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.service-ideal-for > .service-ideal-for-container > p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.service-ideal-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-ideal-for-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-ideal-for-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-ideal-for-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--teal);
  margin-top: 2px;
}

.service-ideal-for-item span {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}

.service-benefits {
  padding: 5rem 2rem;
  background: var(--charcoal);
}

.service-benefits-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-benefits h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.service-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal);
}

.service-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-benefit-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.service-faq {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

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

.service-faq h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-faq-item p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.service-pricing-approach {
  padding: 5rem 2rem;
  background: var(--white);
}

.service-pricing-approach-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-pricing-approach h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-pricing-approach > .service-pricing-approach-container > p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.service-pricing-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-pricing-highlight {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}

.service-pricing-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.service-getting-started {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.service-getting-started-container {
  max-width: 900px;
  margin: 0 auto;
}

.service-getting-started h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.service-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.service-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.service-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-step p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-ideal-for-grid {
    grid-template-columns: 1fr;
  }
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }
  .service-pricing-highlights {
    flex-direction: column;
    align-items: center;
  }
  .service-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   COMPLIANCE OPTIONS SECTION
   ============================================================ */

.compliance-options-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.compliance-options-container {
  max-width: 1300px;
  margin: 0 auto;
}

.compliance-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.compliance-option-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.compliance-option-card:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.1);
  transform: translateY(-4px);
}

.compliance-option-card.featured {
  background: var(--charcoal);
  border-color: var(--teal);
  transform: scale(1.02);
}

.compliance-option-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.25);
}

.compliance-option-icon {
  width: 52px;
  height: 52px;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.compliance-option-card.featured .compliance-option-icon {
  background: rgba(5, 150, 105, 0.25);
}

.compliance-option-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
}

.compliance-option-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(5, 150, 105, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}

.compliance-option-card.featured .compliance-option-tag {
  background: rgba(5, 150, 105, 0.25);
}

.compliance-option-tag.popular {
  background: var(--teal);
  color: var(--white);
}

.compliance-option-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

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

.compliance-option-card > p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.compliance-option-card.featured > p {
  color: rgba(255, 255, 255, 0.7);
}

.compliance-option-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.compliance-option-includes li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compliance-option-card.featured .compliance-option-includes li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.compliance-option-includes li:last-child {
  border-bottom: none;
}

.compliance-option-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.compliance-option-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-align: center;
}

.compliance-option-btn:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.compliance-option-card.featured .compliance-option-btn {
  background: var(--white);
  color: var(--charcoal);
}

.compliance-option-card.featured .compliance-option-btn:hover {
  background: var(--teal);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — Services Overview & Detail Pages
   ============================================================ */

@media (max-width: 1100px) {
  .service-overview-content {
    padding: 3rem 3.5rem;
  }

  .service-detail-intro-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail-stats {
    justify-content: flex-start;
    gap: 2rem;
  }

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

  .compliance-option-card.featured {
    transform: none;
  }

  .compliance-option-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 800px) {
  .service-overview-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-overview-row.reverse {
    direction: ltr;
  }

  .service-overview-image {
    height: 280px;
  }

  .service-overview-content {
    padding: 2.5rem 2rem;
  }

  .service-overview-list {
    grid-template-columns: 1fr;
  }

  .service-subcards-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .compliance-options-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .service-overview-content h2 {
    font-size: 1.7rem;
  }

  .service-detail-section-title {
    font-size: 1.6rem;
  }

  .compliance-options-section {
    padding: 3rem 1rem;
  }

  .service-detail-intro {
    padding: 3rem 1rem;
  }

  .service-detail-cards {
    padding: 3rem 1rem;
  }
}

/* Nav Assessment CTA */
.nav-cta-assessment {
  background: transparent;
  color: var(--teal) !important;
  padding: 0.5rem 1rem;
  border: 2px solid var(--teal);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta-assessment::after {
  display: none;
}

.nav-cta-assessment:hover {
  background: var(--teal);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

/* Assessment Page */
.assessment-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.assessment-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.assessment-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.assessment-hero-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: 10%;
}

.assessment-hero-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  bottom: -50px;
  left: 10%;
}

.assessment-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.assessment-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.assessment-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.assessment-main {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.assessment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.assessment-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scorecard-preview {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.scorecard-icon {
  width: 64px;
  height: 64px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.scorecard-icon svg {
  stroke: var(--teal);
}

.scorecard-preview h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.scorecard-preview p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.scorecard-preview ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scorecard-preview li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.scorecard-preview li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  transform: rotate(45deg);
}

.scorecard-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(5, 150, 105, 0.12);
}

.scorecard-note svg {
  stroke: var(--teal);
  flex-shrink: 0;
}

.scorecard-note span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}

.assessment-progress {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.assessment-progress h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), #34d399);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.assessment-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bg-light);
}

.form-section:last-of-type {
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-section-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.required {
  color: #ef4444;
}

.quiz-question {
  margin-bottom: 2rem;
}

.quiz-question:last-child {
  margin-bottom: 0;
}

.quiz-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  line-height: 1.5;
}

.q-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.quiz-option:hover {
  border-color: rgba(5, 150, 105, 0.3);
  background: rgba(5, 150, 105, 0.02);
}

.quiz-option input[type="radio"] {
  display: none;
}

.quiz-option input[type="radio"]:checked ~ .option-letter {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.quiz-option input[type="radio"]:checked ~ .option-text {
  color: var(--charcoal);
  font-weight: 600;
}

.quiz-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(5, 150, 105, 0.04);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.quiz-option-other {
  flex-wrap: wrap;
}

.other-specify-input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.other-specify-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.other-specify-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-gray);
  transition: all 0.25s ease;
}

.option-text {
  font-size: 0.92rem;
  color: var(--text-gray);
  transition: all 0.25s ease;
  line-height: 1.4;
}

.assessment-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  width: 96px;
  height: 96px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  stroke: var(--teal);
}

.assessment-success h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.assessment-success p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 2rem;
}

@media (max-width: 1024px) {
  .assessment-container {
    grid-template-columns: 1fr;
  }

  .assessment-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .scorecard-preview {
    flex: 1;
    min-width: 280px;
  }

  .assessment-progress {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .assessment-hero {
    min-height: 30vh;
  }

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

  .assessment-subtitle {
    font-size: 1rem;
  }

  .assessment-form-wrapper {
    padding: 1.5rem;
  }

  .assessment-sidebar {
    flex-direction: column;
  }

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

  .nav-cta-assessment {
    display: none;
  }
}

/* Assessments Hub Page */
.assessments-grid-section {
  padding: 4rem 0;
  background: var(--white);
}

.assessments-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.assessment-card {
  display: flex;
  gap: 2rem;
  background: var(--white);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.assessment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 150, 105, 0.25);
}

.assessment-card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.assessment-card-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.assessment-card-content > p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.assessment-card-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.assessment-card-details li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  background: var(--bg-light);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.assessment-card-details li svg {
  color: var(--teal);
  flex-shrink: 0;
}

.assessment-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
  transition: gap 0.3s ease;
}

.assessment-card:hover .assessment-card-link {
  gap: 0.75rem;
}

.assessments-cta {
  padding: 0 0 5rem;
  background: var(--white);
}

.assessments-cta-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.assessments-cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px;
  right: -50px;
}

.assessments-cta-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.assessments-cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.assessments-cta-buttons {
  display: flex;
  gap: 1rem;
}

.assessments-cta-icon {
  color: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .assessment-card {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }

  .assessment-card-icon {
    width: 64px;
    height: 64px;
  }

  .assessment-card-icon svg {
    width: 36px;
    height: 36px;
  }

  .assessments-cta-card {
    flex-direction: column;
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .assessments-cta-buttons {
    justify-content: center;
  }

  .assessments-cta-icon {
    display: none;
  }
}

/* Insights Page */
.insights-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.insights-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.insights-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.insights-hero-bg .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: 15%;
}

.insights-hero-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  bottom: -80px;
  left: 10%;
}

.insights-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.insights-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insights-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.insights-filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  border: 2px solid var(--bg-light);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-gray);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.filter-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.insights-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.insights-featured {
  padding: 4rem 0 0;
  background: var(--white);
}

.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-image {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.04);
}

.article-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-news {
  background: rgba(5, 150, 105, 0.12);
  color: var(--teal);
}

.badge-blog {
  background: rgba(31, 41, 55, 0.1);
  color: var(--charcoal);
}

.featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.meta-date {
  font-size: 0.82rem;
  color: var(--text-gray);
  font-weight: 500;
}

.meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-gray);
  opacity: 0.4;
}

.meta-read {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
}

.featured-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.featured-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.article-link:hover {
  gap: 0.85rem;
  color: var(--charcoal);
}

.article-link svg {
  transition: transform 0.25s ease;
}

.article-link:hover svg {
  transform: translateX(3px);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.insights-news {
  padding: 4rem 0;
  background: var(--white);
}

.insights-blog {
  padding: 4rem 0;
  background: var(--bg-light);
}

.insights-faq {
  padding: 4rem 0;
  background: var(--white);
}

.insights-faq-content {
  max-width: 820px;
  margin: 0 auto;
}

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

.insight-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(31, 41, 55, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insights-cta {
  padding: 4rem 0 5rem;
  background: var(--bg-light);
}

.insights-cta-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.insights-cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px;
  right: -50px;
}

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

.insights-cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.insights-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.insights-cta-icon {
  position: relative;
  z-index: 2;
  opacity: 0.15;
  flex-shrink: 0;
}

.insights-cta-icon svg {
  stroke: var(--white);
}

/* Post Cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s ease;
}

.post-card:hover .post-card-link {
  text-decoration: underline;
}

.posts-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
}

.posts-empty svg {
  stroke: #ccc;
  margin-bottom: 1rem;
}

.posts-empty p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.posts-load-more {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-load-more {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-load-more:hover {
  background: var(--teal);
  color: var(--white);
}

/* Post Detail Page */
.post-detail {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.post-detail-container {
  width: 100%;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}

.post-back-link:hover {
  opacity: 0.7;
}

.post-detail-header {
  margin-bottom: 2rem;
}

.post-detail-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.post-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-detail-category {
  background: rgba(0, 178, 169, 0.1);
  color: var(--teal);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.post-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-detail-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.post-detail-body p {
  margin-bottom: 1.5rem;
}

.post-detail-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.post-detail-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.post-detail-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-detail-share span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #555;
  background: #f5f5f5;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 768px) {
  .post-detail {
    padding: 6rem 1.25rem 3rem;
  }

  .post-detail-title {
    font-size: 1.6rem;
  }

  .post-detail-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

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

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-image {
    min-height: 260px;
  }

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

  .insights-cta-card {
    padding: 2.5rem;
  }

  .insights-cta-icon {
    display: none;
  }
}

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

  .insights-hero {
    min-height: 35vh;
  }

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

  .insights-subtitle {
    font-size: 1rem;
  }

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

  .featured-content h2 {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .insights-cta-card {
    padding: 2rem;
  }

  .insights-cta-content h2 {
    font-size: 1.4rem;
  }
}

/* FAQ Page */
.faq-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.faq-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.faq-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.faq-hero-bg .shape-1 {
  width: 350px;
  height: 350px;
  background: var(--teal);
  top: -80px;
  left: 20%;
}

.faq-hero-bg .shape-2 {
  width: 280px;
  height: 280px;
  background: var(--charcoal);
  bottom: -60px;
  right: 15%;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.faq-page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-page-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-body {
  padding: 4rem 0;
  background: var(--white);
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-light);
}

.faq-item {
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(5, 150, 105, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item.faq-open {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-gray);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

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

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.75;
}

.faq-cta {
  padding: 0 0 5rem;
  background: var(--white);
}

.faq-cta-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.faq-cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px;
  right: -50px;
}

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

.faq-cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.faq-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.faq-cta-icon {
  position: relative;
  z-index: 2;
  opacity: 0.15;
  flex-shrink: 0;
}

.faq-cta-icon svg {
  stroke: var(--white);
}

@media (max-width: 768px) {
  .faq-hero {
    min-height: 32vh;
  }

  .faq-page-title {
    font-size: 2rem;
  }

  .faq-page-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question span {
    font-size: 0.92rem;
  }

  .faq-open .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .faq-cta-card {
    padding: 2rem;
  }

  .faq-cta-content h2 {
    font-size: 1.4rem;
  }

  .faq-cta-icon {
    display: none;
  }

  .faq-cta-buttons {
    flex-direction: column;
  }
}

/* Pricing Page */
.pricing-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  text-align: center;
}

.pricing-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pricing-hero-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.pricing-hero-bg .shape-1 {
  width: 350px;
  height: 350px;
  background: var(--teal);
  top: -80px;
  right: 20%;
}

.pricing-hero-bg .shape-2 {
  width: 280px;
  height: 280px;
  background: var(--charcoal);
  bottom: -60px;
  left: 15%;
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.pricing-page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-page-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.pricing-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hourly Rate Banner */
.pricing-hourly {
  padding: 3rem 0 0;
  background: var(--white);
}

.pricing-hourly-card {
  padding: 2rem 2.5rem;
  border-radius: 16px;
  background: var(--bg-light);
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.pricing-hourly-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-hourly-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-hourly-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.pricing-hourly-header p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.pricing-hourly-rates {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-hourly-rate-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pricing-hourly-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.pricing-hourly-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(31, 41, 55, 0.15);
  min-width: 2rem;
  margin-bottom: 0.3em;
}

.pricing-hourly-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  white-space: nowrap;
}

.pricing-hourly-details {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
}

.pricing-hourly-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  flex: 1;
}

.pricing-hourly-detail svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.pricing-hourly-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.pricing-hourly-detail span {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.pricing-dollar {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
  color: var(--teal);
}

.pricing-unit {
  font-size: 0.35em;
  font-weight: 500;
  color: var(--text-gray);
}

/* Pricing Sections */
.pricing-section {
  padding: 4rem 0;
  background: var(--white);
}

.pricing-section-alt {
  background: var(--bg-light);
}

.pricing-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pricing-section-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), #047857);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.pricing-section-header p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

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

/* Pricing Card */
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.12);
}

.pricing-card-featured:hover {
  box-shadow: 0 16px 48px rgba(5, 150, 105, 0.18);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(31, 41, 55, 0.06);
}

.pricing-tier-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-amount-tbd {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-gray);
  padding: 0.75rem 0;
}

.pricing-card-header .btn {
  margin-top: 0.5rem;
}

.pricing-best-for {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 0.75rem;
  font-style: italic;
  line-height: 1.4;
}

.pricing-card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

/* Features List */
.pricing-includes-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--teal);
}

.pricing-card-footer {
  padding: 1.25rem 2rem 2rem;
}

.pricing-card-footer .btn {
  width: 100%;
  justify-content: center;
}

.pricing-feature-excluded {
  opacity: 0.45;
}

.pricing-feature-excluded svg {
  color: #dc2626 !important;
}

.pricing-feature-excluded span {
  text-decoration: line-through;
}

.pricing-feature-limited {
  opacity: 0.7;
}

.pricing-feature-limited svg {
  color: #d97706 !important;
}

/* Placeholder Cards */
.pricing-card-placeholder .pricing-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  gap: 1rem;
}

.pricing-placeholder-content svg {
  color: rgba(31, 41, 55, 0.12);
}

.pricing-card-featured .pricing-placeholder-content svg {
  color: rgba(5, 150, 105, 0.2);
}

.pricing-placeholder-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 220px;
}

.pricing-disclaimer {
  margin-top: 1.5rem;
  text-align: center;
}

.pricing-disclaimer p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Pricing Notes */
.pricing-notes {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-light);
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.pricing-notes h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pricing-note-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.pricing-note-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.pricing-note-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.pricing-note-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.55;
}

.pricing-notes-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

.pricing-notes-description a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}

.pricing-notes-description a:hover {
  color: var(--charcoal);
}

.pricing-highlight {
  font-weight: 700;
  color: var(--teal);
}

/* Pricing Modals */
.pricing-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: flex-start;
  justify-content: center;
  padding: 3vh 0;
}

.pricing-modal.modal-active {
  display: flex;
}

.pricing-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.pricing-modal-container {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 640px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.25s ease;
}

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

.pricing-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #666;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.pricing-modal-close:hover {
  background: #f3f3f3;
  color: #333;
}

.pricing-modal-header {
  margin-bottom: 1.5rem;
}

.pricing-modal-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pricing-modal-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.step-indicator.step-active {
  background: var(--teal);
  color: var(--white);
}

.step-line {
  flex: 0 0 40px;
  height: 2px;
  background: #e5e7eb;
}

.form-page {
  display: none;
}

.form-page.form-page-active {
  display: block;
  animation: formPageFadeIn 0.2s ease;
}

@keyframes formPageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 178, 169, 0.1);
  background: var(--white);
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-addons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.form-addon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #444;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 40px;
}

.form-addon-item:hover {
  background: #f8f8f8;
  border-color: #ddd;
}

.form-addon-item:has(input:checked) {
  background: #f0fdfa;
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.form-addon-item input[type="checkbox"] {
  width: auto;
  accent-color: var(--teal);
  outline: none;
  flex-shrink: 0;
}

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

.form-actions-split {
  justify-content: space-between;
}

.conditional-questions {
  padding: 1rem;
  background: #f8fffe;
  border: 1px solid #d1faf5;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  max-height: 0;
  padding: 0 1rem;
  margin-bottom: 0;
  opacity: 0;
  border-color: transparent;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, margin-bottom 0.35s ease, border-color 0.3s ease;
}

.conditional-questions.cq-visible {
  max-height: 600px;
  padding: 1rem;
  margin-bottom: 1rem;
  opacity: 1;
  border-color: #d1faf5;
}

.conditional-questions .form-group:last-child {
  margin-bottom: 0;
}

.additional-level-group {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-bottom 0.35s ease;
}

.additional-level-group.alg-visible {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 1rem;
}

/* Success modal */
.pricing-modal-success {
  text-align: center;
  max-width: 420px;
}

.success-content svg {
  stroke: var(--teal);
  margin-bottom: 1rem;
}

.success-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.success-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .pricing-modal-container {
    padding: 1.5rem;
    width: 96%;
    max-height: 95vh;
  }

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

  .pricing-modal-header h2 {
    font-size: 1.2rem;
  }
}

/* Pricing CTA */
.pricing-cta {
  padding: 0 0 5rem;
  background: var(--white);
}

.pricing-cta-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.pricing-cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px;
  right: -50px;
}

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

.pricing-cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pricing-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.pricing-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-cta-icon {
  position: relative;
  z-index: 2;
  opacity: 0.15;
  flex-shrink: 0;
}

.pricing-cta-icon svg {
  stroke: var(--white);
}

/* Pricing Responsive */
@media (max-width: 900px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-notes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    min-height: 32vh;
  }

  .pricing-page-title {
    font-size: 2rem;
  }

  .pricing-page-subtitle {
    font-size: 1rem;
  }

  .pricing-hourly-card {
    padding: 1.75rem;
  }

  .pricing-hourly-header {
    flex-direction: column;
    text-align: center;
  }

  .pricing-hourly-details {
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-section-header h2 {
    font-size: 1.6rem;
  }

  .pricing-notes {
    padding: 1.5rem;
  }

  .pricing-cta-card {
    padding: 2rem;
  }

  .pricing-cta-content h2 {
    font-size: 1.4rem;
  }

  .pricing-cta-icon {
    display: none;
  }

  .pricing-cta-buttons {
    flex-direction: column;
  }
}

/* ============================================================
   AI SERVICES PAGE
   ============================================================ */

.ai-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.ai-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ai-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ai-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.ai-hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(5, 150, 105, 0.3);
  top: -100px;
  right: -100px;
  animation: aiGlow1 8s ease-in-out infinite;
}

.ai-hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.25);
  bottom: -50px;
  left: -50px;
  animation: aiGlow2 10s ease-in-out infinite;
}

@keyframes aiGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.1); }
}

@keyframes aiGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.15); }
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.ai-hero-content .service-breadcrumb {
  margin-bottom: 2rem;
}

.ai-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.ai-hero-content > p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.ai-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-light::before {
  color: #ffffff;
}

.btn-secondary-light:hover {
  background: #ffffff;
  color: var(--charcoal);
  border-color: #ffffff;
}

/* AI Capabilities Section */
.ai-capabilities {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.ai-capabilities-container {
  max-width: 1300px;
  margin: 0 auto;
}

.ai-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.75rem;
}

.ai-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.ai-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.ai-capability-card:nth-child(1) { grid-column: 1 / 3; }
.ai-capability-card:nth-child(2) { grid-column: 3 / 5; }
.ai-capability-card:nth-child(3) { grid-column: 5 / 7; }
.ai-capability-card:nth-child(4) { grid-column: 2 / 4; }
.ai-capability-card:nth-child(5) { grid-column: 4 / 6; }

.ai-capability-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ai-capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.ai-capability-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ai-capability-icon svg {
  stroke: var(--teal);
}

.ai-capability-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.ai-capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ai-capability-list li {
  font-size: 0.92rem;
  color: var(--text-gray);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.ai-capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* AI Feature Highlights */
.ai-highlights {
  padding: 6rem 2rem;
  background: var(--white);
}

.ai-highlights-container {
  max-width: 900px;
  margin: 0 auto;
}

.ai-highlights .ai-section-title {
  margin-bottom: 3rem;
}

.ai-highlight-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--bg-light);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ai-highlight-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ai-highlight-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, var(--charcoal), #374151);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-highlight-icon svg {
  stroke: var(--teal);
}

.ai-highlight-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

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

/* AI Use Cases */
.ai-usecases {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.ai-usecases-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-usecases .ai-section-title {
  color: #ffffff;
}

.ai-usecases .ai-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.ai-usecases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.ai-usecase-item:nth-child(1) { grid-column: 1 / 3; }
.ai-usecase-item:nth-child(2) { grid-column: 3 / 5; }
.ai-usecase-item:nth-child(3) { grid-column: 5 / 7; }
.ai-usecase-item:nth-child(4) { grid-column: 2 / 4; }
.ai-usecase-item:nth-child(5) { grid-column: 4 / 6; }

.ai-usecase-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ai-usecase-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.ai-usecase-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.6;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.ai-usecase-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ai-usecase-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* AI Comparison Section */
.ai-comparison {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.ai-comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

.ai-comparison-table {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.ai-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  padding: 1.25rem 2rem;
}

.ai-comparison-header .ai-comparison-label {
  color: transparent;
}

.ai-comparison-header .ai-comparison-col {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.ai-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: center;
}

.ai-comparison-row:last-child {
  border-bottom: none;
}

.ai-comparison-row .ai-comparison-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.ai-comparison-row .ai-comparison-col {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-gray);
}

.ai-comparison-callout {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ai-comparison-callout svg {
  stroke: var(--teal);
  min-width: 24px;
  margin-top: 2px;
}

.ai-comparison-callout p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* AI Benefits Section */
.ai-benefits {
  padding: 6rem 2rem;
  background: var(--white);
}

.ai-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ai-benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.ai-benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(14, 165, 233, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.ai-benefit-icon svg {
  stroke: var(--teal);
}

.ai-benefit-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.ai-benefit-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* AI Trust Section */
.ai-trust {
  padding: 6rem 2rem;
  background: var(--charcoal);
}

.ai-trust-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-trust-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ai-trust-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.ai-trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ai-trust-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: background 0.3s ease;
}

.ai-trust-feature:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ai-trust-feature svg {
  stroke: var(--teal);
  min-width: 24px;
}

.ai-trust-feature span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}

/* AI CTA Buttons */
.ai-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: #ffffff;
  color: var(--charcoal);
  border-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Business Impact of AI */
.ai-impact {
  padding: 6rem 2rem;
  background: #ffffff;
}

.ai-impact-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.ai-impact-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(32px);
}

.ai-impact-card.ai-impact-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-impact-card:nth-child(2).ai-impact-visible { transition-delay: 0.1s; }
.ai-impact-card:nth-child(3).ai-impact-visible { transition-delay: 0.2s; }
.ai-impact-card:nth-child(4).ai-impact-visible { transition-delay: 0.3s; }

.ai-impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.ai-impact-card.ai-impact-visible:hover {
  transform: translateY(-6px);
}

.ai-impact-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.ai-impact-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ai-impact-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.ai-impact-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: #9CA3AF;
  font-style: italic;
}

/* AI Page Responsive */
@media (max-width: 1024px) {
  .ai-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-capability-card:nth-child(1),
  .ai-capability-card:nth-child(2),
  .ai-capability-card:nth-child(3),
  .ai-capability-card:nth-child(4),
  .ai-capability-card:nth-child(5) {
    grid-column: auto;
  }
  .ai-capability-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

  .ai-trust-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .ai-impact-number {
    font-size: 1.75rem;
  }

  .ai-hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .ai-hero-content h1 {
    font-size: 2rem;
  }

  .ai-hero-content > p {
    font-size: 1rem;
  }

  .ai-hero-buttons {
    flex-direction: column;
  }

  .ai-capabilities-grid {
    grid-template-columns: 1fr;
  }
  .ai-capability-card:nth-child(5) {
    max-width: 100%;
  }

  .ai-section-title {
    font-size: 1.8rem;
  }

  .ai-highlight-card {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
  }

  .ai-usecases-grid {
    grid-template-columns: 1fr;
  }
  .ai-usecase-item:nth-child(1),
  .ai-usecase-item:nth-child(2),
  .ai-usecase-item:nth-child(3),
  .ai-usecase-item:nth-child(4),
  .ai-usecase-item:nth-child(5) {
    grid-column: auto;
  }

  .ai-comparison-header,
  .ai-comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: left;
  }

  .ai-comparison-header .ai-comparison-label,
  .ai-comparison-header .ai-comparison-col {
    text-align: left;
  }

  .ai-comparison-row .ai-comparison-col {
    justify-content: flex-start;
    padding-left: 0.5rem;
  }

  .ai-comparison-header .ai-comparison-label {
    display: none;
  }

  .ai-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ai-trust-features {
    grid-template-columns: 1fr;
  }

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

/* Locations Map Section */
.locations-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.locations-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.locations-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.locations-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

#us-map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.us-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-state {
  fill: #e2e8f0;
  stroke: #fff;
  stroke-width: 1;
}

.pin-dot {
  fill: var(--teal);
  stroke: #fff;
  stroke-width: 0.6;
}

.locations-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.locations-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.locations-disclaimer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.locations-disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .locations-section {
    padding: 3rem 1rem;
  }
  .locations-title {
    font-size: 1.6rem;
  }
  .locations-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}