/* Staff Survey SA - Modern Staff Survey Platform */

:root {
  /* Primary - Vibrant Teal */
  --primary-50: #f0fdfa;
  --primary-100: #ccfbf1;
  --primary-200: #99f6e4;
  --primary-300: #5eead4;
  --primary-400: #2dd4bf;
  --primary-500: #14b8a6;
  --primary-600: #0d9488;
  --primary-700: #0f766e;
  --primary-800: #115e59;
  --primary-900: #134e4a;

  /* Accent - Warm Orange */
  --accent-50: #fff7ed;
  --accent-100: #ffedd5;
  --accent-200: #fed7aa;
  --accent-300: #fdba74;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --accent-700: #c2410c;

  /* Secondary - Deep Blue */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  /* Success - Green */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;

  /* Neutral - Slate */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  --gradient-hero: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 50%, var(--slate-800) 100%);
  --gradient-dark: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
  --gradient-light: linear-gradient(180deg, var(--slate-50) 0%, white 100%);
  --gradient-mesh: 
    radial-gradient(at 40% 20%, rgba(20, 184, 166, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: white;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-xs {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

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

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--slate-600);
}

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--slate-500);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--slate-700);
  border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
  background: var(--primary-50);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-500);
}

.btn-outline:hover {
  background: var(--primary-500);
  color: white;
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--slate-200);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: 0.5rem;
  transition: all 0.15s;
}

.nav-link:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 280px;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

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

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 0.625rem;
  transition: background 0.15s;
}

.nav-dropdown-item:hover {
  background: var(--slate-50);
}

.nav-dropdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
}

.nav-dropdown-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.125rem;
}

.nav-dropdown-content p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.4;
}

.header .btn {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.menu-toggle:hover {
  background: var(--slate-100);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-600);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-section {
  margin-bottom: 1rem;
}

.mobile-nav-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  padding: 0.5rem 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 0.5rem;
  transition: all 0.15s;
}

.mobile-nav a:hover {
  background: var(--slate-50);
  color: var(--primary-600);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header .btn { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Hero Sections */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, white, transparent);
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  color: white;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-visual-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-visual-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-visual-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-visual-subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
}

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

.hero-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-300);
}

.hero-stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Page Header (for inner pages) */
.page-header {
  position: relative;
  background: var(--gradient-hero);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, white, transparent);
}

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

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
  max-width: 800px;
}

.page-header .lead {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb svg {
  width: 1rem;
  height: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-alt {
  background: var(--slate-50);
}

.section-dark {
  background: var(--gradient-dark);
  color: white;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: white;
}

.section-dark p {
  color: var(--slate-400);
}

.section-gradient {
  background: linear-gradient(180deg, var(--primary-50) 0%, white 100%);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--primary-400);
}

/* Stats Bar */
.stats-bar {
  display: grid;
  gap: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-100);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-600);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.375rem;
  font-weight: 500;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

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

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-600);
}

.feature-icon-accent {
  background: linear-gradient(135deg, var(--accent-100), var(--accent-50));
}

.feature-icon-accent svg {
  color: var(--accent-600);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.feature-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-600);
  transition: gap 0.2s;
}

.feature-card:hover .arrow {
  gap: 0.75rem;
}

/* Survey Cards (larger, more prominent) */
.survey-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1200px) {
  .survey-grid { grid-template-columns: repeat(3, 1fr); }
}

.survey-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.survey-card-image {
  height: 180px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.survey-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.survey-card-image svg {
  width: 4rem;
  height: 4rem;
  color: white;
  position: relative;
  z-index: 1;
}

.survey-card-image.accent {
  background: var(--gradient-accent);
}

.survey-card-image.blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.survey-card-image.dark {
  background: var(--gradient-dark);
}

.survey-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.survey-card-tag {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-600);
  background: var(--primary-100);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.survey-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.survey-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
}

.survey-card .btn {
  margin-top: 1.5rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Content Lists */
.content-list {
  margin-top: 1.5rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--slate-700);
}

.content-list li::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-100);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}

.section-dark .content-list li {
  color: var(--slate-300);
}

.section-dark .content-list li::before {
  background-color: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2314b8a6'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

/* Numbered List */
.numbered-list {
  counter-reset: item;
  margin-top: 2rem;
}

.numbered-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.numbered-list li:last-child {
  border-bottom: none;
}

.numbered-list li::before {
  counter-increment: item;
  content: counter(item);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.numbered-list h4 {
  margin-bottom: 0.375rem;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--primary-50), white);
  border: 1px solid var(--primary-200);
  border-radius: 1.25rem;
  padding: 2rem;
}

.info-box h3, .info-box h4 {
  color: var(--primary-700);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 1rem;
}

.info-box-accent {
  background: linear-gradient(135deg, var(--accent-50), white);
  border-color: var(--accent-200);
}

.info-box-accent h3, .info-box-accent h4 {
  color: var(--accent-700);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-100);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-400);
  fill: var(--accent-400);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* Client Logos */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
}

.logo-bar span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-300);
  letter-spacing: 0.05em;
}

/* CTA Sections */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-section .btn-group {
  justify-content: center;
}

/* Inline CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border: 1px solid var(--primary-200);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cta-box p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* Forms */
.form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--slate-200);
  border-radius: 0.75rem;
  transition: all 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px var(--primary-100);
}

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

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

.form-submit {
  width: 100%;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

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

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

.faq-question svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Process Steps */
.process-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.process-step::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(50% + 3rem);
  width: calc(100% - 6rem);
  height: 2px;
  background: var(--slate-200);
  display: none;
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.process-number {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

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

/* Industry Tags */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all 0.2s;
}

.industry-tag:hover {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
}

.industry-tag svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary-600);
}

.back-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

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

.footer-brand .logo {
  color: white;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-col h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--primary-400);
}

.footer-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-800);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-400);
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
}

.footer-contact-item a {
  color: var(--slate-300);
  transition: color 0.15s;
}

.footer-contact-item a:hover {
  color: var(--primary-400);
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--slate-800);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary-600);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-400);
}

.footer-social a:hover svg {
  color: white;
}

.footer-family {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
}

.footer-family img {
  height: 40px;
  width: auto;
  border-radius: 0.375rem;
}

.footer-family span {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--slate-500);
  transition: color 0.15s;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Illustrations / Visual Elements */
.visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.visual-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -200px;
  right: -100px;
}

.visual-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-500);
  bottom: -150px;
  left: -100px;
}

/* Icon Grid (for visual display) */
.icon-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.icon-display-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.icon-display-item:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

.icon-display-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-400);
}

.icon-display-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Visual Cards for Hero */
.visual-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  margin-bottom: 1rem;
}

.visual-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.visual-card h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.visual-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
}

.comparison-table th {
  background: var(--slate-50);
  font-weight: 600;
  color: var(--slate-700);
  font-size: 0.9375rem;
}

.comparison-table td {
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--green-500);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
}

.trust-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-500);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* Pricing-style cards */
.highlight-card {
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.3;
}

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

.highlight-card h3, .highlight-card h4 {
  color: white;
}

.highlight-card p {
  color: rgba(255,255,255,0.85);
}

/* Rich Content Styling */
.content-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-page p {
  margin-bottom: 1rem;
}

.content-page ul, .content-page ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-page ul {
  list-style: disc;
}

.content-page ol {
  list-style: decimal;
}

.content-page li {
  margin-bottom: 0.5rem;
  color: var(--slate-600);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: none;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

.sticky-cta .btn {
  box-shadow: var(--shadow-2xl);
}
