:root {
  --primary-color: #20B2AA;
  --primary-dark: #1A9B96;
  --primary-light: #4ECDC4;
  --secondary-color: #2D3748;
  --secondary-dark: #1A202C;
  --accent-color: #6C5CE7;
  --dark-gray: #2C3E50;
  --medium-gray: #34495E;
  --light-gray: #ECF0F1;
  --white: #FFFFFF;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-400: #A3A3A3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --gradient-primary: linear-gradient(135deg, #20B2AA 0%, #4ECDC4 50%, #6C5CE7 100%);
  --gradient-secondary: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
  --gradient-navbar: linear-gradient(135deg, rgba(32, 178, 170, 0.95) 0%, rgba(78, 205, 196, 0.95) 50%, rgba(108, 92, 231, 0.95) 100%);
	--gradient-hero: linear-gradient(135deg, rgba(32, 178, 170, 0.95) 0%, rgba(78, 205, 196, 0.95) 30%, rgba(108, 92, 231, 0.95) 70%, rgba(162, 155, 254, 0.95) 100%);
  --hero-overlay: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.15) 100%);
	--heading-color: #0F172A;
	--text-contrast: #1A202C;
  --gradient-modern: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-tech: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --font-primary: 'Poppins', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --spacing-xs: 0.75rem;
  --spacing-sm: 1.25rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 5rem;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --elev-1: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
  --elev-2: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
  --elev-3: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  --elev-4: 0 24px 48px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  --box-shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.18);
  --box-shadow-navbar: 0 4px 24px rgba(32, 178, 170, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --navbar-height: 90px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--white);
  overflow-x: hidden;
}
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
  color: var(--text-contrast);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
	opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
  color: var(--heading-color);
}
h1 {
	font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}
h2 {
	font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}
h3 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}
h4 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
}
h5 {
	font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
h6 {
	font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
/* --------------------------------------------------
   Utilities
   -------------------------------------------------- */
.u-flex { display: flex; }
.u-grid { display: grid; }
.u-items-center { align-items: center; }
.u-justify-center { justify-content: center; }
.u-hidden { display: none !important; }
.u-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
p {
  margin-bottom: var(--spacing-lg);
  color: var(--neutral-600);
	font-size: 1.125rem;
  line-height: 1.7;
}
a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition-fast);
}
a:hover {
	color: var(--secondary-color);
	transform: translateY(-1px);
}
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}
.section {
	padding: var(--spacing-xl) 0;
	position: relative;
}
.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(32, 178, 170, 0.2) 50%, transparent 100%);
}
.section:nth-child(even) {
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}
/* duplicate .section-alt removed; consolidated later */
.text-center {
	text-align: center;
}
/* removed unused .text-left / .text-right */
/* consolidated: .eyebrow enhanced styles are defined later */
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.subheading {
	font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}
.kicker {
	font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: var(--space-2);
}
.text-large {
	font-size: 1.125rem;
  line-height: 1.6;
}
.text-small {
	font-size: 0.875rem;
  line-height: 1.5;
}
.text-xs {
	font-size: 0.75rem;
  line-height: 1.4;
}
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.navbar {
  background: var(--gradient-navbar);
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow-navbar);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  height: var(--navbar-height);
  padding: 0 2rem;
  opacity: 1;
  transform: translateY(0);
}
/* removed unused .navbar-loading and navbarPulse */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.logo {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 65px;
  flex-shrink: 0;
}
.logo img {
  filter: brightness(0) invert(1);
  height: 65px;
  width: auto;
  max-width: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-menu {
  display: none;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: center;
  margin: 0 var(--spacing-xl);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}
.nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-link {
  color: var(--white);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  height: 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 0.95rem;
  position: relative;
}
.navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.03) !important;
  color: var(--white) !important;
  transform: none !important;
}
.navbar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
  font-weight: var(--font-weight-semibold) !important;
}
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  opacity: 0.9;
  transition: all 0.2s ease;
}
.navbar .nav-link.active:hover::after {
  width: 24px;
  opacity: 1;
}
.nav-link.btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.nav-link.btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-0.5px);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.15);
}
.nav-actions .btn {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 36px;
}
.nav-actions .btn-primary {
  background: linear-gradient(135deg, #20B2AA 0%, #4ECDC4 100%);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}
.nav-actions .btn-primary:hover {
  transform: translateY(-0.3px);
  box-shadow: 0 1px 4px rgba(32, 178, 170, 0.2);
}
.nav-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.nav-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-0.3px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

.hamburger:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
  box-shadow: var(--elev-1);
}
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* shimmer effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--elev-3);
}
.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--elev-2);
}
.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  border-color: transparent;
  font-weight: 600;
}
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--elev-3);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--elev-3);
  border-color: transparent;
}
.btn-ghost {
  background-color: transparent;
  color: var(--neutral-600);
  border: 1px solid transparent;
  box-shadow: none;
}
.btn-ghost:hover {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  transform: translateY(-1px);
}
.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: 0.875rem;
}
.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: 1.125rem;
}
.btn-xl {
  padding: var(--space-6) var(--space-12);
  font-size: 1.25rem;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.hero {
  background: var(--gradient-hero);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg);
}
.hero::after {
	content: '';
  position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
	z-index: 1;
}
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
.hero h1 {
  font-size: clamp(3.5rem, 7vw, 5rem);
  margin-bottom: var(--spacing-lg);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}
.hero .btn-secondary,section.hero .btn-secondary {
	background-color: var(--white) !important;
	color: var(--primary-color) !important;
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
.hero .btn-outline,section.hero .btn-outline {
	background-color: transparent !important;
	color: var(--white) !important;
	border: 2px solid var(--white) !important;
	backdrop-filter: blur(10px) !important;
}
.hero-features {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.hero-feature-icon {
	color: var(--white);
	font-size: 1.2rem;
}
.hero-feature-text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}
.grid {
  display: grid;
  gap: var(--spacing-lg);
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--elev-2);
  transition: var(--transition);
  border: 1px solid var(--neutral-200);
  backdrop-filter: blur(10px);
}
.pricing-card { overflow: visible; }
/* consolidated stronger card hover (see enhanced section below) */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--elev-4);
  border-color: var(--primary-color);
}
.card-elevated {
  box-shadow: var(--elev-3);
}
.card-elevated:hover {
  box-shadow: var(--elev-4);
  transform: translateY(-6px) scale(1.02);
}
/* removed unused .card-interactive */
.icon {
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	color: currentColor;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.icon-32 {
	width: 32px;
	height: 32px;
}
/* removed unused .icon-48 */
.hero .icon {
	color: #fff;
}
.benefit-icon {
	transition: var(--transition);
}
.benefit-icon:hover {
	transform: translateY(-3px) scale(1.1);
	color: var(--primary-color);
}
.card:hover .benefit-icon {
	transform: translateY(-3px) scale(1.1);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.pill-primary {
  background-color: var(--primary-color);
  color: var(--white);
}
/* removed unused .pill-secondary */
/* removed unused .badge */
/* removed unused .card-icon */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
@keyframes slideInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.hover-lift {
  transition: var(--transition);
}
.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--elev-3);
}
.hover-scale {
  transition: var(--transition);
}
.hover-scale:hover {
  transform: scale(1.05);
}
/* removed unused .hover-scale */
.icon-hover {
  transition: var(--transition);
}
.icon-hover:hover {
  transform: scale(1.15);
  color: var(--primary-color);
}
/* removed unused .page-transition */
.error {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2) !important;
}
.check {
    color: #27AE60;
    font-weight: bold;
}
.cross {
    color: #E74C3C;
    font-weight: bold;
}
.form-group {
	margin-bottom: 1rem;
}
.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.form-input,.form-select,.form-textarea {
    width: 100%;
	padding: var(--spacing-md);
	border: 2px solid var(--neutral-200);
	border-radius: var(--radius);
	font-size: 1.125rem;
	transition: var(--transition);
	background-color: var(--white);
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
	transform: translateY(-1px);
}
.form-textarea {
	resize: vertical;
}
.form-submit {
	width: 100%;
}
.form-note {
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}

.form-help {
	font-size: 0.75rem;
	color: var(--text-light);
	margin-top: 0.25rem;
}
.contact-form {
	padding: 2rem;
}
.faq-section {
    margin: var(--spacing-xl) 0;
}
.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}
.faq-question {
    background-color: var(--light-gray);
    padding: var(--spacing-md);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-radius: var(--radius);
    margin-bottom: 0;
}
.faq-question:hover {
    background-color: #F8F9FA;
    transform: translateY(-1px);
    box-shadow: var(--elev-1);
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
	max-height: 0 !important;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	padding: 0 var(--spacing-md);
}
.faq-item.active .faq-answer {
	max-height: 500px !important;
	opacity: 1;
	visibility: visible;
	padding: var(--spacing-md);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}
.feature-item {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--elev-2);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
}
.feature-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--elev-3);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--light-gray);
}
.feature-list li:last-child {
    border-bottom: none;
}
.cta-section {
	background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
	color: white !important;
	text-align: center;
	padding: var(--spacing-xl) var(--spacing-md);
	position: relative;
	z-index: 50;
}

/* Override the even section background for CTA */
.section.cta-section:nth-child(even) {
	background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%) !important;
}
.cta-section .reveal {
	opacity: 1 !important;
	transform: none !important;
}
.cta-title {
	color: white !important;
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.95) !important;
	margin-bottom: 2.5rem;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.cta-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	align-items: center;
}
.cta-btn-outline {
	border-color: white;
	color: white;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}
.cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: white;
	color: white;
}
.cta-features {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}
.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 500;
}
.cta-check {
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: bold;
}
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(32, 178, 170, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}
.footer-container {
    position: relative;
    z-index: 2;
}
.footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}
.footer-logo {
  height: 100px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
}
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
/* consolidated .footer-link base lives below */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}
.footer-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}
.footer-social-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}
.footer-section-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-item {
    margin-bottom: 0.75rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}
.footer-link:hover {
    color: var(--primary-color);
}
.footer-contact-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.footer-contact-details {
    margin-bottom: 1.5rem;
}
.footer-contact-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-bottom-link:hover {
    color: var(--primary-color);
}
.footer-bottom-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}
/* Enhanced Visual Hierarchy */
.eyebrow {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.section-heading {
  position: relative;
  margin-bottom: 1rem;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.section-alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Enhanced Button Styles */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Pulse animation for primary CTAs */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(32, 178, 170, 0.8); }
  100% { box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4); }
}

/* Enhanced Card Hover Effects */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--elev-4);
  border-color: var(--primary-color);
}

.card-elevated {
  box-shadow: var(--elev-3);
  border: 1px solid rgba(32, 178, 170, 0.1);
}

.card-elevated:hover {
  box-shadow: var(--elev-4);
  transform: translateY(-8px) scale(1.03);
  border-color: var(--primary-color);
}

/* Enhanced Form Styles */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input, .form-select, .form-textarea {
  transition: all 0.3s ease;
  border: 2px solid var(--neutral-300);
  background: white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
  outline: none;
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #E74C3C;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input.success, .form-select.success, .form-textarea.success {
  border-color: #27AE60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Loading spinner */
.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

/* Enhanced Icon Styles */
.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
  transition: all 0.3s ease;
}

.icon-container:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.icon-container .icon {
  color: white;
  width: 28px;
  height: 28px;
}

/* Enhanced Sticky Navigation */
/* consolidated navbar transition/backdrop already set above */

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(32, 178, 170, 0.98) 0%, rgba(78, 205, 196, 0.98) 50%, rgba(108, 92, 231, 0.98) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.navbar.scrolled .logo img {
  transform: scale(0.9);
}

/* Better Visual Contrast */
.hero h1, .hero h2, .hero h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Section Headings */
h2.section-heading {
  position: relative;
  margin-bottom: 2rem;
}

h2.section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

/* Improved Card Visual Hierarchy */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

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

/* Disable top accent line on pricing cards */
/* Tweak accent line position for pricing cards and keep below badge */
.pricing-card::before {
  top: 10px;
  left: 20px;
  right: 20px;
  height: 3px;
  z-index: 1;
}

/* Enhanced Form Visual Feedback */
.form-input:focus + .form-label,
.form-select:focus + .form-label,
.form-textarea:focus + .form-label {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.form-label {
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Better Mobile Visual Hierarchy */
@media (max-width: 768px) {
  .icon-container {
    width: 50px;
    height: 50px;
  }
  
  .icon-container .icon {
    width: 24px;
    height: 24px;
  }
  
  .hero h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  
  .hero p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 769px) {
	.nav-menu { display: flex; }
	.hamburger { display: none; }
}
@media (max-width: 768px) {
	:root {
		--spacing-xxl: 2rem;
		--spacing-xl: 3.5rem;
	}
	h1 { font-size: clamp(2rem, 4vw, 2.5rem) !important; }
	h2 { font-size: clamp(1.75rem, 3.5vw, 2rem) !important; }
	h3 { font-size: clamp(1.5rem, 3vw, 1.75rem) !important; }
	h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important; }
	.text-large { font-size: 1rem !important; line-height: 1.5 !important; }
	.subheading { font-size: 1.125rem !important; line-height: 1.4 !important; }
	.container { padding: 0 1rem; max-width: 100%; overflow-x: hidden; }
	
	/* Enhanced mobile button sizes */
	.btn {
		min-height: 48px;
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
	
	.btn-lg {
		min-height: 56px;
		padding: 1rem 2rem;
		font-size: 1.125rem;
	}
	
	/* Better mobile spacing */
	.section {
		padding: 3rem 0;
	}
	
	.card {
		margin-bottom: 1.5rem;
	}
	
	.hero-content {
		padding: 2rem 0 3rem 0;
	}
	
	.back-to-top {
		bottom: 1rem;
		right: 1rem;
		width: 44px;
		height: 44px;
	}
	
	html, body {
		overflow-x: hidden !important;
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 !important;
		padding: 0 !important;
		position: relative !important;
		left: 0 !important;
		right: 0 !important;
		box-sizing: border-box !important;
	}
	* { box-sizing: border-box !important; max-width: 100% !important; }
	html { overflow-x: hidden !important; width: 100% !important; max-width: 100% !important; }
	body {
		border-left: none !important;
		margin-left: 0 !important;
		padding-left: 0 !important;
		overflow-x: hidden !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.container, .navbar-container, .hero, .section {
		max-width: 100% !important;
		overflow-x: hidden !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.nav-menu { max-width: 100% !important; overflow-x: hidden !important; }
	.hero-content {
		max-width: 100% !important;
		overflow: visible !important;
		position: relative !important;
		z-index: 10 !important;
		padding-top: 2rem !important;
	}
	/* reduce !important where possible while keeping layout */
	* { max-width: 100%; box-sizing: border-box; }
	html, body { background: var(--white) !important; background-image: none !important; }
	.hero, .hero.container, section.hero, section.hero .container {
		background: var(--gradient-hero) !important;
		background-image: none !important;
		color: var(--white) !important;
	}
	.footer, .footer .container {
		background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
		background-image: none !important;
		color: white !important;
	}
	.hero h1,.hero h2,.hero h3,.hero .hero-content,section.hero h1,section.hero h2,section.hero h3,section.hero .hero-content {
		color: var(--white) !important;
	}
	.hero p,section.hero p { color: rgba(255, 255, 255, 0.9) !important; }
	.hero .container {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 1rem !important;
	}
	.nav-menu:not(.active):not(.mobile-open) {
		left: -100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.navbar {
		width: 100% !important;
		max-width: 100% !important;
		left: 0 !important;
		right: 0 !important;
		background: var(--gradient-navbar) !important;
		overflow: visible !important;
		height: 110px !important;
		padding: 0 !important;
	}
	.navbar-container {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 1.5rem !important;
		height: 110px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		box-sizing: border-box !important;
	}
	.logo img { height: 70px !important; width: auto !important; }
	.hamburger {
		display: flex !important;
		position: relative;
		z-index: 1001;
		align-items: center;
		justify-content: center;
		padding: 0.75rem !important;
		background: none !important;
		border: none !important;
		outline: none !important;
		width: 44px !important;
		height: 44px !important;
		margin: 0 !important;
		flex-shrink: 0 !important;
		min-width: 44px !important;
		min-height: 44px !important;
	}
	* { max-width: 100vw !important; }
	.container, .section { position: relative; z-index: 1; }
	.hero-content { position: relative; z-index: 1; }
	* { background-attachment: scroll; }
	html, body {
		background-size: 100% auto !important;
		background-repeat: no-repeat !important;
		background-position: top center !important;
	}
	.hero, .navbar {
		background-size: cover !important;
		background-repeat: no-repeat !important;
		background-position: center !important;
	}
	body {
		position: relative !important;
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow-x: hidden !important;
	}
	.container, .section, .hero {
		position: relative !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.footer {
		padding: 2rem 0 1.5rem 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow-x: hidden !important;
		box-sizing: border-box !important;
		background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
		color: white !important;
	}
	.footer .container {
		padding: 0 1rem !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	.footer .footer-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
		text-align: center !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	.footer .footer-logo {
		height: 80px !important;
		margin: 0 auto 1rem auto !important;
		display: block !important;
	}
	.footer .footer-section-title {
		font-size: 1.2rem !important;
		margin-bottom: 1rem !important;
	}
	.footer .footer-links { margin-bottom: 1.5rem !important; }
	.footer .footer-link-item { margin-bottom: 0.75rem !important; }
	.footer .footer-link {
		font-size: 0.95rem !important;
		padding: 0.5rem 0 !important;
		display: block !important;
	}
	.footer p { font-size: 0.9rem !important; line-height: 1.5 !important; }
	.footer .footer-social {
		flex-direction: column !important;
		gap: 0.75rem !important;
		align-items: center !important;
		margin-top: 1.5rem !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.footer .footer-social-btn {
		display: inline-flex !important;
		justify-content: center !important;
		padding: 0.75rem 1.25rem !important;
		font-size: 0.9rem !important;
		width: 100% !important;
		max-width: 200px !important;
		box-sizing: border-box !important;
		text-align: center !important;
	}
	.footer .footer-contact-details { text-align: center !important; }
	.footer .footer-contact-item {
		margin-bottom: 0.5rem !important;
		font-size: 0.9rem !important;
	}
	.footer .footer-bottom {
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.footer .footer-bottom-content {
		flex-direction: column !important;
		text-align: center !important;
		gap: 1rem !important;
		width: 100% !important;
		box-sizing: border-box !important;
		align-items: center !important;
	}
	.footer .footer-bottom-links {
		flex-direction: column !important;
		gap: 0.5rem !important;
		align-items: center !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.footer a:hover { color: var(--primary-color) !important; }
	.hero,section.hero,#home,section#home {
		background: linear-gradient(135deg, rgba(32, 178, 170, 0.95) 0%, rgba(78, 205, 196, 0.95) 50%, rgba(108, 92, 231, 0.95) 100%) !important;
		background-attachment: scroll !important;
		min-height: 60vh !important;
		background-size: cover !important;
		background-position: center !important;
		text-align: center !important;
		padding-top: 130px !important;
	}
	.hero h1 {
		font-size: clamp(2rem, 4vw, 2.5rem) !important;
		line-height: 1.2 !important;
		margin-bottom: 1rem !important;
		color: #fff !important;
		text-shadow: 0 1px 2px rgba(0,0,0,.35) !important;
	}
	.hero p {
		font-size: 1.1rem !important;
		margin-bottom: 2rem !important;
		line-height: 1.5 !important;
		color: #fff !important;
		text-shadow: 0 1px 2px rgba(0,0,0,.35) !important;
	}
	.hero-cta {
		flex-direction: column !important;
		align-items: center !important;
		gap: 1rem !important;
		margin-bottom: 2rem !important;
	}
	.hero-cta .btn {
		width: 100% !important;
		max-width: 280px !important;
		padding: 0.875rem 1.5rem !important;
		font-size: 1rem !important;
	}
	.hero .btn-secondary,section.hero .btn-secondary {
		background-color: var(--white) !important;
		color: var(--primary-color) !important;
		border: none !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	}
	.hero .btn-outline,section.hero .btn-outline {
		background-color: transparent !important;
		color: var(--white) !important;
		border: 2px solid var(--white) !important;
		backdrop-filter: blur(10px) !important;
	}
	.hero .hero-features {
		flex-direction: column !important;
		gap: 1rem !important;
		padding: 2rem 1.5rem !important;
		margin: 0 1rem !important;
		background: rgba(255, 255, 255, 0.1) !important;
		backdrop-filter: blur(10px) !important;
		border-radius: 15px !important;
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
	}
	.hero .hero-feature {
		flex-direction: column !important;
		text-align: center !important;
		gap: 0.5rem !important;
	}
	.hero .hero-feature-icon { color: var(--white) !important; }
	.hero .hero-feature-text { color: rgba(255, 255, 255, 0.9) !important; }
	.section { padding: 2.5rem 0 !important; }
	.section h2 { font-size: 1.8rem !important; margin-bottom: 1rem !important; }
	.section p { font-size: 1rem !important; line-height: 1.5 !important; }
	.reveal { opacity: 1 !important; transform: translateY(0) !important; }
	.hero .reveal { opacity: 1 !important; transform: translateY(0) !important; }
	.nav-menu {
    display: flex;
		position: fixed;
		top: 110px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 110px);
		background: var(--primary-color);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
    align-items: center;
		padding-top: var(--spacing-xl);
		transition: all 0.3s ease;
		box-shadow: var(--box-shadow-navbar);
		z-index: 1000;
		visibility: hidden;
		opacity: 0;
		transform: translateX(-100%);
	}
	.nav-menu li { height: auto; margin-bottom: var(--spacing-sm); }
	.nav-link {
		height: auto;
    padding: var(--spacing-sm) var(--spacing-md);
		margin-bottom: 0;
		width: 160px;
    text-align: center;
		font-size: 0.9rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.nav-link.btn {
		padding: var(--spacing-xs) var(--spacing-sm);
		font-size: 0.8rem;
		width: 120px;
	}
	.nav-menu.active,ul.nav-menu.active,.navbar .nav-menu.active {
		left: 0 !important;
		display: flex !important;
		background: rgba(32, 178, 170, 0.95) !important;
		transform: translateX(0) !important;
		position: fixed !important;
		top: 110px !important;
		width: 100% !important;
		height: calc(100vh - 110px) !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	.nav-actions .btn { display: none; }
	.mobile-nav-actions {
    display: flex;
		flex-direction: column;
		gap: var(--spacing-sm);
		margin-top: var(--spacing-lg);
		padding-top: var(--spacing-md);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	.mobile-nav-actions .btn {
    display: block;
		width: 160px;
		text-align: center;
		margin: 0 auto;
	}
	.grid-2,.grid-3,.grid-4 {
        grid-template-columns: 1fr;
		gap: 1.5rem !important;
	}
	.btn { width: 100%; max-width: 300px; }
	.hero h1 { font-size: 2rem; }
	.hero p { font-size: 1.1rem; }
	.hero-cta { flex-direction: column; align-items: center; }
	h1 { font-size: 2rem; }
	h2 { font-size: 1.5rem; }
  :root {
    --spacing-xxl: 3rem;
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1.25rem;
    --spacing-sm: 1rem;
  }
	.section { padding: 3rem 0 !important; }
	.section-alt { padding: 3rem 0 !important; }
	.container { padding: 0 1.5rem !important; }
	.grid { gap: 2rem !important; }
	.card { padding: 2rem !important; margin-bottom: 1.5rem !important; }
	.btn { padding: 1rem 1.5rem; margin-bottom: 1rem; font-size: 1rem; }
	.btn-lg { padding: 1.25rem 2rem; font-size: 1.1rem; }
	.form-group { margin-bottom: 1.5rem !important; }
	.form-input,.form-textarea,.form-select {
    padding: 1rem !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
	.contact-form { padding: 2rem !important; }
	.form-input,.form-select,.form-textarea {
		min-height: 48px !important;
		font-size: 16px !important;
		padding: var(--spacing-md) !important;
		border-radius: var(--border-radius) !important;
		border: 2px solid var(--neutral-200) !important;
		transition: all 0.2s ease !important;
	}
	.form-input:focus,.form-select:focus,.form-textarea:focus {
		border-color: var(--primary-color) !important;
		box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1) !important;
		outline: none !important;
	}
	.form-textarea { min-height: 120px !important; resize: vertical !important; }
	.checkbox-container {
		display: flex !important;
		align-items: flex-start !important;
		gap: var(--spacing-sm) !important;
		font-size: 0.9rem !important;
		line-height: 1.4 !important;
		cursor: pointer !important;
	}
	.checkbox-container input[type="checkbox"] {
		margin: 0 !important;
		width: 18px !important;
		height: 18px !important;
		flex-shrink: 0 !important;
		margin-top: 2px !important;
	}
	.faq-item { margin-bottom: 1.5rem !important; }
	.faq-question { padding: 1.5rem !important; font-size: 1.1rem !important; }
  .faq-answer {
		padding: 0 !important;
		margin: 0 !important;
		max-height: 0 !important;
		overflow: hidden !important;
		opacity: 0 !important;
		visibility: hidden !important;
		display: none !important;
	}
	.faq-item.active .faq-answer {
		max-height: 500px !important;
		opacity: 1 !important;
		visibility: visible !important;
		display: block !important;
    padding: 1.5rem !important;
	}
	.cta-section { 
		padding: 4rem 0 !important; 
	}
	.cta-title {
		font-size: 2.25rem !important;
		margin-bottom: 1.25rem !important;
	}
	.cta-subtitle {
		font-size: 1.1rem !important;
		margin-bottom: 2rem !important;
		padding: 0 1rem !important;
	}
	.cta-buttons {
		flex-direction: column !important;
		gap: 1rem !important;
		align-items: center !important;
		margin-bottom: 2.5rem !important;
	}
	.cta-buttons .btn { 
		width: 100% !important; 
		max-width: 280px !important; 
		padding: 1rem 2rem !important;
		font-size: 1rem !important;
	}
	.cta-features {
		flex-direction: column !important;
		gap: 1.5rem !important;
		align-items: center !important;
	}
	.cta-feature {
		justify-content: center !important;
		font-size: 0.9rem !important;
	}
  .hero-cta {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }
	.hero-cta .btn { width: 100% !important; max-width: 280px !important; }
	.text-center { padding: 0 1rem !important; }
	.text-center h2 { margin-bottom: 1.5rem !important; }
	.text-center p { margin-bottom: 2rem !important; }
	.eyebrow { margin-bottom: 1rem !important; }
	ul, ol { padding-left: 1.5rem !important; }
	li { margin-bottom: 0.75rem !important; line-height: 1.6 !important; }
	.comparison-table { font-size: 0.9rem !important; }
	.comparison-table th,.comparison-table td { padding: 1rem 0.75rem !important; }
	.pill { margin: 0.25rem 0.5rem 0.25rem 0 !important; padding: 0.5rem 1rem !important; }
	.solution-grid { gap: 2rem !important; }
	.solution-card { padding: 2rem !important; }
	.benefits-grid { gap: 2rem !important; }
	.impact-grid { gap: 2rem !important; }
	.contact-grid { gap: 2rem !important; }
	.process-list { padding-left: 1rem !important; }
	.process-item { margin-bottom: 1.5rem !important; padding-left: 1rem !important; }
	.contact-details { gap: 1rem !important; }
	.contact-detail { margin-bottom: 1rem !important; }
	.hero { padding: 120px 0 2rem 0 !important; }
	.hero-content { padding: 3rem 0 4rem 0 !important; }
	.cta-title { font-size: 1.75rem !important; margin-bottom: 1rem !important; }
	.cta-subtitle { font-size: 1rem !important; margin-bottom: 1.5rem !important; }
	.section h2 { font-size: 1.75rem !important; margin-bottom: 1rem !important; }
	.section .text-large { font-size: 1rem !important; margin-bottom: 1.5rem !important; }
	.benefit-card { padding: 1.5rem !important; margin-bottom: 1.5rem !important; }
	.benefit-icon { margin-bottom: 1rem !important; }
	.benefit-title { font-size: 1.25rem !important; margin-bottom: 0.75rem !important; }
	.impact-card { padding: 1.5rem !important; margin-bottom: 1.5rem !important; }
	.impact-title { font-size: 1.25rem !important; margin-bottom: 0.75rem !important; }
	.feature-list li { padding: 0.5rem 0 !important; font-size: 0.95rem !important; }
	.solution-card { padding: 1.5rem !important; }
	.solution-feature-title { font-size: 1.25rem !important; margin-bottom: 1rem !important; }
	.solution-feature-item { margin-bottom: 0.75rem !important; padding: 0.25rem 0 !important; }
}
@media (max-width: 480px) {
	.container { padding: 0 1rem !important; }
	.section { padding: 2.5rem 0 !important; }
	.section-alt { padding: 2.5rem 0 !important; }
	.card { padding: 1.5rem !important; }
	.contact-form { padding: 1.5rem !important; }
	.hero-cta .btn,.cta-buttons .btn {
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
	.section { padding: 2rem 0 !important; }
	.section-alt { padding: 2rem 0 !important; }
	.card { padding: 1.25rem !important; }
	.benefit-card,.impact-card { padding: 1.25rem !important; }
}

/* ===========================================
   LOGIN PAGE STYLES - MINIMAL & CLEAN
   =========================================== */

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: var(--spacing-xl) var(--spacing-md);
}

.login-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.login-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

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

.login-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.login-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

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

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

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background: var(--white);
  color: #374151;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #6b7280;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.login-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.signup-text {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.signup-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Mobile Login Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 1rem;
  }
  
  .login-card {
    padding: 2rem 1.5rem;
  }
  
  .login-logo {
    height: 40px;
    margin-bottom: 1.25rem;
  }
  
  .login-title {
    font-size: 1.25rem;
  }
}

/* ===========================================
   COOKIE BANNER STYLES
   =========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.98) 0%, rgba(78, 205, 196, 0.98) 50%, rgba(108, 92, 231, 0.98) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #20B2AA 0%, #4ECDC4 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

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

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

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

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 12px;
    border: 1px solid #ECF0F1;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-label {
    background-color: #20B2AA;
}

.cookie-toggle input:checked + .cookie-toggle-label:before {
    transform: translateX(26px);
}

.cookie-toggle.disabled .cookie-toggle-label {
    background-color: #20B2AA;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem 2rem 2rem 2rem;
    border-top: 1px solid #ECF0F1;
}

/* Mobile Cookie Banner Styles */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}