@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  /* Theme Colors - Dark Mode Default with Green Accents */
  --primary: #7dd855; /* Bright green */
  --primary-rgb: 125, 216, 85;
  --primary-light: #8aff5d;
  --primary-dark: #6cd643;
  --secondary: #1a1a1a; /* Dark gray */
  --secondary-rgb: 26, 26, 26;
  --secondary-light: #2a2a2a;
  --secondary-dark: #0f0f0f; /* Very dark gray/black */
  --accent: #56cb32; /* Another green shade */
  --accent-light: #8eff6d;
  --background: #0f0f0f; /* Near black */
  --background-alt: #1a1a1a;
  --card-bg: rgba(26, 26, 26, 0.9);
  --text: #f9fafb; /* White/light gray for text */
  --text-light: #d1d5db;
  --shadow-color: rgba(0, 0, 0, 0.5);

  /* Accent Colors for Dark Green Theme */
  --accent-lime: #c4ff33;
  --accent-green-dark: #3c8c1c;
  --accent-teal: #00d9c0;
  --accent-gray: #2e2e2e;
  --text-on-gradient: #ffffff;

  /* Core UI Variables */
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
    0 2px 4px -1px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2),
    0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Theme Variables */
[data-theme="light"] {
  --primary: #6cd643;
  --primary-light: #7dd855;
  --primary-dark: #5ab938;
  --secondary: #f5f5f5;
  --secondary-light: #ffffff;
  --secondary-dark: #e0e0e0;
  --accent: #4fb32c;
  --accent-light: #67d63a;
  --background: #f8f8f8;
  --background-alt: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.9);
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary) 50%,
    var(--secondary-light) 100%
  );
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Add decorative geometric elements */
body::before,
body::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

body::before {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 216, 85, 0.05),
    transparent 70% rgba(125, 216, 85, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}

body::after {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 216, 85, 0.15) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -100px;
}

/* Add geometric pattern overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      var(--secondary-light) 1px,
      transparent 1px
    ),
    linear-gradient(135deg, var(--secondary-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.03;
  z-index: -2;
  pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent-light),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(125, 216, 85, 0.3);
  animation: textShimmer 8s infinite linear;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: 3.2rem;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  font-weight: 700;
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background-color: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(125, 216, 85, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  padding: 1.5rem 2rem;
}

[data-theme="light"] .header {
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(125, 216, 85, 0.3);
}

/* Removed scrolled header styles to keep compact header always */

/* Add geometric decorative elements to header */
.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(45deg, var(--primary) 25%, transparent 25%),
    linear-gradient(135deg, var(--primary-dark) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.05;
  z-index: -1;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-container::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -20px;
  left: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: -1;
}

.logo {
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  background: linear-gradient(
    45deg,
    var(--primary),
    var(--primary-light),
    var(--accent-lime)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite, gradientFlow 10s ease infinite;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--accent-lime));
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover:after {
  width: 100%;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 15rem 2rem 5rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary) 50%,
    var(--secondary-light) 90%
  );
  transition: background 0.3s ease;
}

/* Add decorative elements to hero section */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
      45deg,
      rgba(125, 216, 85, 0.03) 25%,
      transparent 25%
    ),
    linear-gradient(135deg, rgba(125, 216, 85, 0.03) 25%, transparent 25%);
  background-size: 50px 50px;
  z-index: 0;
}

/* Add colorful diagonal lines like in the reference image */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(45deg, var(--primary) 1px, transparent 1px),
    linear-gradient(135deg, var(--primary-dark) 1px, transparent 1px),
    linear-gradient(225deg, var(--accent) 1px, transparent 1px),
    linear-gradient(315deg, rgba(125, 216, 85, 0.4) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.1;
  z-index: 0;
}

[data-theme="light"] .hero {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 50%, #f8f8f8 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: -1;
  animation: float 15s ease-in-out infinite alternate;
}

.hero-title {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
  text-shadow: 0 0 10px rgba(0, 128, 255, 0.3);
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 2rem;
  margin: 2rem 0;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.4s, pulsate 3s ease-in-out 1.5s infinite;
  background: linear-gradient(135deg, var(--primary), var(--accent-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulsate {
  0% {
    text-shadow: 0 0 10px rgba(125, 216, 85, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(125, 216, 85, 0.6),
      0 0 30px rgba(125, 216, 85, 0.4);
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 10px rgba(125, 216, 85, 0.2);
    transform: scale(1);
  }
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  animation: fadeIn 1s forwards 1.2s;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
  color: var(--text-on-gradient);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: rotateSlow 20s linear infinite;
  filter: blur(30px);
}

[data-theme="dark"] .shape {
  opacity: 0.15;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  animation-duration: 25s;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 350px;
  height: 350px;
  border-radius: 63% 37% 52% 48% / 36% 71% 29% 64%;
  background: linear-gradient(135deg, var(--primary), var(--accent-lime));
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -10px);
  }
  50% {
    transform: translate(-5px, 5px);
  }
  75% {
    transform: translate(-8px, -8px);
  }
}

/* Gradient animated buttons */
.button {
  position: relative;
  width: 160px;
  height: 50px;
  background-color: var(--secondary-earth);
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  border: solid 2px black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 0 1rem;
  text-shadow: 2px 2px rgb(36, 36, 36);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 168px;
  height: 58px;
  border-radius: 10px;
  background: linear-gradient(
    -45deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -45deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.button:hover::after {
  filter: blur(30px);
}

.button:hover::before {
  transform: rotate(-180deg);
}

.button {
  position: relative;
  width: 160px;
  height: 50px;
  background-color: var(--secondary-earth);
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  border: solid 2px black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 0 1rem;
  text-shadow: 2px 2px rgb(36, 36, 36);
}

.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(42, 157, 143, 0.4);
}

.button .prefix,
.button .action {
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
}

.button .prefix {
  margin-right: 5px;
}

.button:hover .prefix {
  color: var(--accent-light);
  transform: scale(1.1);
}

.button:hover .action {
  color: var(--accent-earth);
  transform: scale(1.1);
}

.button:active::before {
  scale: 0.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* Regular Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 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: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white !important;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover,
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

.btn-bounce:hover {
  animation: bounce 0.6s;
}

.bounce-button,
.btn-secondary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white !important;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-block;
}

.bounce-button:hover,
.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
  50% {
    transform: scale(1.025);
    box-shadow: var(--shadow-lg);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
}

@keyframes strongPulsate {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(125, 216, 85, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(125, 216, 85, 0.8),
      0 0 30px rgba(125, 216, 85, 0.6);
    box-shadow: 0 8px 25px rgba(125, 216, 85, 0.4);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(125, 216, 85, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Features Section */
.section-title-container {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
  position: relative;
}

.section-title-container::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -30px;
  right: 10%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.05;
  z-index: 0;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-section {
  padding: 6rem 2rem;
  background: var(--secondary-dark);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.03;
  z-index: 0;
}

.features-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
  background: linear-gradient(135deg, var(--primary), var(--accent-lime));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.03;
  z-index: 0;
}

/* Flip Cards */
.flip-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  perspective: 1000px; /* Creates the 3D space for the flip effect */
  position: relative;
  margin: 20px;
  transition: transform 0.3s ease;
}

.flip-card:hover {
  transform: translateY(-10px);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d; /* Maintains 3D effect during animation */
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg); /* Horizontal flip on hover */
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari support */
  backface-visibility: hidden; /* Hides the back face when not visible */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.flip-card-front {
  background: rgba(26, 26, 26, 0.8);
  color: var(--text);
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-front::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: -1;
}

.flip-card-back {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  transform: rotateY(180deg); /* Initially rotated */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-card-back::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
}

.flip-card-front .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(125, 216, 85, 0.1),
    rgba(108, 214, 67, 0.1)
  );
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.flip-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(125, 216, 85, 0.15),
    rgba(108, 214, 67, 0.15)
  );
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.flip-card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  color: var(--primary);
  font-weight: 600;
}

.flip-card-back p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 10px;
}

/* Trusted Brands Section */
.trusted-brands {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.03),
    rgba(var(--secondary-rgb), 0.05)
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trusted-brands::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.05;
  z-index: 0;
}

.trusted-brands::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.05;
  z-index: 0;
}

.section-title-container h2 {
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brands-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 40px 0;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.brands-carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 20); /* Width calculation based on number of logos */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 10));
  } /* Half the total width */
}

.brand-logo {
  width: 200px;
  padding: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(0); /* Show in color at all times */
  opacity: 1;
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.1);
  filter: grayscale(0); /* Show in color on hover */
  opacity: 1;
}

/* Process Flow Section */
.process-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--accent-teal-rgb), 0.03)
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--primary-rgb), 0.1) 20%,
    rgba(var(--accent-teal-rgb), 0.1) 50%,
    rgba(var(--primary-rgb), 0.1) 80%,
    transparent 100%
  );
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--primary-rgb), 0.1) 20%,
    rgba(var(--accent-teal-rgb), 0.1) 50%,
    rgba(var(--primary-rgb), 0.1) 80%,
    transparent 100%
  );
}

.process-section h2 {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.process-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--primary));
  border-radius: 3px;
}

.section-intro {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 60px;
  color: var(--text);
  line-height: 1.6;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--accent-teal) 50%,
    var(--primary) 100%
  );
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  width: 30%;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(125, 216, 85, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(125, 216, 85, 0.4);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.connector {
  display: none; /* Remove the blue connector lines */
}

/* Process cards are based on the flip-card implementation but with modifications */
.process-card {
  height: 250px;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
}

/* Add more rounded corners to process cards */
.process-card .flip-card-front,
.process-card .flip-card-back {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.process-card .flip-card-front {
  background: rgba(255, 255, 255, 0.8);
}

.process-card .flip-card-back {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Make sure the process text is centered */
.process-card .flip-card-front h3,
.process-card .flip-card-back p {
  text-align: center;
  width: 100%;
}

.process-card .flip-card-front h3 {
  color: var(--primary);
  font-weight: 600;
}

.process-card .flip-card-front::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: -1;
}

/* Integration Partners Grid */
.integrations-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--secondary-rgb), 0.03)
  );
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px 20px;
}

.integrations-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  background: linear-gradient(135deg, var(--accent-orange), var(--primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.05;
  z-index: 0;
}

.integrations-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -100px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.05;
  z-index: 0;
}

.integrations-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.integrations-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--primary));
  border-radius: 3px;
}

.integration-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.integration-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(var(--primary-rgb), 0.1);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.integration-icon img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Zoom overlay effect */
.integrations-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 80%;
  height: 80%;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/5/5b/Logo_de_Zoom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.integration-note {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 40px;
  text-align: center;
}

.integration-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.integration-note a:hover {
  text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.03),
    rgba(var(--secondary-rgb), 0.05)
  );
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.05;
  z-index: 0;
}

.pricing-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.05;
  z-index: 0;
}

.pricing-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  position: relative;
  display: block;
}

.pricing-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--primary));
  border-radius: 3px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
  width: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 0;
}

[data-theme="dark"] .pricing-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  z-index: 2;
}

/* Special styling for the Pay What You Can card */
.pricing-card:first-child {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--secondary-rgb), 0.05)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
}

.pricing-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.pricing-price .min-text {
  font-size: 0.85rem;
  opacity: 0.8;
  display: inline-block;
  margin-left: 0.25rem;
  -webkit-text-fill-color: var(--text-light);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--accent-teal);
  margin-top: 1rem;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}

/* Ensure pricing card buttons are aligned at bottom */
.pricing-card .bounce-button {
  margin-top: auto;
  align-self: stretch;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.03),
    rgba(var(--secondary-rgb), 0.05)
  );
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  background: linear-gradient(135deg, var(--accent-orange), var(--primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.05;
  z-index: 0;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -100px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.05;
  z-index: 0;
}

.faq-section .section-title,
.faq-section .section-subtitle {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.faq-section .section-title {
  color: var(--primary);
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--primary));
  border-radius: 3px;
}

.faq-items {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .faq-item {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
  transform: translateY(-5px);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 0;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
  color: var(--primary);
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.6s ease;
  line-height: 1.6;
  text-align: left;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(var(--secondary-rgb), 0.05),
    rgba(var(--primary-rgb), 0.03)
  );
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  background: linear-gradient(135deg, var(--accent-purple), var(--primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  position: relative;
  display: block;
}

.testimonials-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--primary));
  border-radius: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 0;
}

[data-theme="dark"] .testimonial-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text);
  z-index: 1;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  font-family: "Georgia", serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.1),
    rgba(var(--accent-teal-rgb), 0.1)
  );
  border: 2px solid rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--accent-teal-rgb), 0.3);
}

.testimonial-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar img {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  transition: all 0.3s ease;
}

.testimonial-avatar:hover img {
  border-color: var(--accent-teal);
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--primary);
  position: relative;
}

.testimonial-info h4::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #6cd643, #7dd855);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.testimonial-card:hover .testimonial-info h4::after {
  width: 50px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.95),
    rgba(26, 26, 26, 0.9)
  );
  color: var(--text);
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin: 40px 20px;
  border: 1px solid rgba(125, 216, 85, 0.1);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #7dd855, #6cd643);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.05;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6cd643, #7dd855);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.03;
  z-index: 0;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95),
    rgba(20, 20, 20, 0.9)
  );
  color: var(--text);
  border: 1px solid rgba(125, 216, 85, 0.15);
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-blob {
  position: absolute;
  opacity: 0.1;
  filter: blur(40px);
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #7dd855, #6cd643);
  top: -200px;
  right: -200px;
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  animation: float 15s ease-in-out infinite alternate;
}

.cta-blob-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6cd643, #7dd855);
  bottom: -300px;
  left: -200px;
  border-radius: 63% 37% 52% 48% / 36% 71% 29% 64%;
  animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(-20px, 10px) rotate(-5deg);
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #7dd855;
  margin-bottom: 20px;
  font-size: 3rem;
  position: relative;
  display: inline-block;
}

.cta-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7dd855, #6cd643);
  border-radius: 3px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-section .btn-primary {
  background-color: #7dd855;
  color: #0f0f0f !important;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s;
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(125, 216, 85, 0.3);
  background-color: #6cd643;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white !important;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  margin: 1rem;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Special CTA Button */
.btn-cta-special {
  background: linear-gradient(45deg, #7dd855, #6cd643);
  color: #0f0f0f !important;
  padding: 15px 28px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  border: 4px solid #000000;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-cta-special:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-cta-special:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-special:hover:before {
  left: 100%;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-cta-special:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-cta-special:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-special:hover:before {
  left: 100%;
}

/* Audit Section Styling */
.audit-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(125, 216, 85, 0.1);
}

.audit-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
      45deg,
      rgba(125, 216, 85, 0.03) 25%,
      transparent 25%
    ),
    linear-gradient(135deg, rgba(125, 216, 85, 0.03) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.audit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.audit-section .section-subtitle {
  color: #7dd855;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.audit-section .btn-cta-special {
  background: #000000 !important;
  color: white !important;
  font-weight: 700;
  padding: 2rem 4rem;
  border-radius: 50px;
  border: 4px solid #000000;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  animation: strongPulsate 1.5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.click-here-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.8;
  font-style: italic;
  display: block;
  text-align: center;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(125, 216, 85, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

.btn-cta-special:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-cta-special:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-special:hover:before {
  left: 100%;
}

.cta-form {
  max-width: 600px;
  margin: 4rem auto 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(125, 216, 85, 0.15) 0%,
    rgba(108, 214, 67, 0.2) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 2px solid rgba(125, 216, 85, 0.3);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.cta-form::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  z-index: -1;
}

.cta-form::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-orange), var(--secondary));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.3;
  z-index: -1;
}

.cta-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Forms */
.form-control-animated {
  position: relative;
  margin-bottom: 2rem;
}

.form-control-animated input,
.form-control-animated textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(125, 216, 85, 0.3);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  color: var(--secondary-dark);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control-animated input:focus,
.form-control-animated textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(125, 216, 85, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.form-control-animated label {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  color: var(--secondary);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  background: transparent;
  padding: 0 0.5rem;
}

/* Audit Section Styling */
.audit-section {
  background: linear-gradient(135deg, #7dd855 0%, #6cd643 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0 0 10px 10px;
}

.audit-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 157, 143, 0.3) 0%,
    rgba(42, 157, 143, 0.6) 100%
  );
  border-radius: 50% 0 0 50%;
  z-index: 1;
}

.audit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.audit-section .section-subtitle {
  color: black !important;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: none;
  position: relative;
  display: block;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  animation: strongPulsate 1.5s ease-in-out infinite;
  white-space: nowrap;
}

/* Remove underline decoration */

.btn-cta-special {
  background: #7dd855;
  color: #000000;
  font-weight: 700;
  padding: 2rem 4rem;
  border-radius: 50px;
  border: 4px solid #000000;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: strongPulsate 1.5s ease-in-out infinite;
}

.btn-cta-special:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
}

.btn-cta-special:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .audit-section .section-subtitle {
    font-size: 2.4rem;
  }

  .btn-cta-special {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }
}

.form-control-animated input:focus ~ label,
.form-control-animated input:not(:placeholder-shown) ~ label,
.form-control-animated textarea:focus ~ label,
.form-control-animated textarea:not(:placeholder-shown) ~ label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.form-submit::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: 0.5s;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.form-submit:hover::before {
  left: 100%;
}

/* Footer */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-dark) 100%
  );
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  opacity: 0.1;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.footer-branding {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-branding p {
  color: #000000;
  margin-bottom: 20px;
  max-width: 400px;
  backdrop-filter: blur(5px);
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links h3,
.footer-contact h3 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent-teal),
    var(--accent-purple)
  );
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #333333;
  transform: translateX(5px);
}

.footer-links a::before,
.footer-contact a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--accent-teal),
    var(--accent-purple)
  );
  transition: width 0.3s ease;
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: #000000;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Theme Switch - BB8 Style */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  position: relative;
  z-index: 100;
  min-width: 120px;
  min-height: 60px;
}

/* BB8 Toggle Switch */
.bb8-toggle {
  --toggle-size: 8px;
  --toggle-width: 10.625em;
  --toggle-height: 5.625em;
  --toggle-offset: calc((var(--toggle-height) - var(--bb8-diameter)) / 2);
  --toggle-bg: linear-gradient(#2c4770, #070e2b 35%, #628cac 50% 70%, #a6c5d4)
    no-repeat;
  --bb8-diameter: 4.375em;
  --radius: 99em;
  --transition: 0.4s;
  --accent: #de7d2f;
  --bb8-bg: #fff;
}

.bb8-toggle,
.bb8-toggle *,
.bb8-toggle *::before,
.bb8-toggle *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bb8-toggle {
  cursor: pointer;
  margin-top: var(--margin-top-for-head);
  font-size: var(--toggle-size);
}

.bb8-toggle__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.bb8-toggle__container {
  width: var(--toggle-width);
  height: var(--toggle-height);
  background: var(--toggle-bg);
  background-size: 100% 11.25em;
  background-position-y: -5.625em;
  border-radius: var(--radius);
  position: relative;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: calc(var(--toggle-offset) - 1.688em + 0.188em);
  left: var(--toggle-offset);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 2;
}

.bb8__head-container {
  position: relative;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 2;
  -webkit-transform-origin: 1.25em 3.75em;
  -ms-transform-origin: 1.25em 3.75em;
  transform-origin: 1.25em 3.75em;
}

.bb8-head,
.bb8__head {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: transparent;
  position: relative;
  border: 0.125em solid var(--accent);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}

.bb8__antenna {
  position: absolute;
  width: 0.125em;
  height: 0.5em;
  background: var(--accent);
  border-radius: 0.063em;
  top: -0.375em;
  transition: var(--transition);
}

.bb8__antenna:nth-child(1) {
  right: 0.75em;
}

.bb8__antenna:nth-child(2) {
  left: 0.75em;
}

.bb8__head::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.125em;
  background: var(--accent);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: var(--transition);
}

.bb8__head::after {
  content: "";
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  background: var(--accent);
  border-radius: 50%;
  top: 0.75em;
  right: 0.5em;
  background-position: 0 0;
  transition: var(--transition);
}

.bb8__head {
  overflow: hidden;
  margin-bottom: -0.188em;
  width: 2.5em;
  height: 1.688em;
  background: linear-gradient(
      transparent 0.063em,
      dimgray 0.063em 0.313em,
      transparent 0.313em 0.375em,
      var(--accent) 0.375em 0.5em,
      transparent 0.5em 1.313em,
      silver 1.313em 1.438em,
      transparent 1.438em
    ),
    linear-gradient(
      45deg,
      transparent 0.188em,
      var(--bb8-bg) 0.188em 1.25em,
      transparent 1.25em
    ),
    linear-gradient(
      -45deg,
      transparent 0.188em,
      var(--bb8-bg) 0.188em 1.25em,
      transparent 1.25em
    ),
    linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0.063em 0.125em gray);
  filter: drop-shadow(0 0.063em 0.125em gray);
}

.bb8__head::before {
  content: "";
  position: absolute;
  width: 0.563em;
  height: 0.563em;
  background: radial-gradient(
      0.125em circle at 0.25em 0.375em,
      red,
      transparent
    ),
    radial-gradient(
      0.063em circle at 0.375em 0.188em,
      var(--bb8-bg) 50%,
      transparent 100%
    ),
    linear-gradient(45deg, #000 0.188em, dimgray 0.313em 0.375em, #000 0.5em);
  border-radius: var(--radius);
  top: 0.413em;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  -webkit-box-shadow: 0 0 0 0.089em lightgray, 0.563em 0.281em 0 -0.148em,
    0.563em 0.281em 0 -0.1em var(--bb8-bg), 0.563em 0.281em 0 -0.063em;
  box-shadow: 0 0 0 0.089em lightgray, 0.563em 0.281em 0 -0.148em,
    0.563em 0.281em 0 -0.1em var(--bb8-bg), 0.563em 0.281em 0 -0.063em;
  z-index: 1;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8__head::after {
  content: "";
  position: absolute;
  bottom: 0.375em;
  left: 0;
  width: 100%;
  height: 0.188em;
  background: linear-gradient(
    to right,
    var(--accent) 0.125em,
    transparent 0.125em 0.188em,
    var(--accent) 0.188em 0.313em,
    transparent 0.313em 0.375em,
    var(--accent) 0.375em 0.938em,
    transparent 0.938em 1em,
    var(--accent) 1em 1.125em,
    transparent 1.125em 1.875em,
    var(--accent) 1.875em 2em,
    transparent 2em 2.063em,
    var(--accent) 2.063em 2.25em,
    transparent 2.25em 2.313em,
    var(--accent) 2.313em 2.375em,
    transparent 2.375em 2.438em,
    var(--accent) 2.438em
  );
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8__antenna {
  position: absolute;
  -webkit-transform: translateY(-90%);
  -ms-transform: translateY(-90%);
  transform: translateY(-90%);
  width: 0.059em;
  border-radius: var(--radius) var(--radius) 0 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8__antenna:nth-child(1) {
  height: 0.938em;
  right: 0.938em;
  background: linear-gradient(#000 0.188em, silver 0.188em);
}

.bb8__antenna:nth-child(2) {
  height: 0.375em;
  left: 50%;
  -webkit-transform: translate(-50%, -90%);
  -ms-transform: translate(-50%, -90%);
  transform: translate(-50%, -90%);
  background: silver;
}

.bb8__body {
  width: 4.375em;
  height: 4.375em;
  background: var(--bb8-bg);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: linear-gradient(
      -90deg,
      var(--bb8-bg) 4%,
      var(--accent) 4% 10%,
      transparent 10% 90%,
      var(--accent) 90% 96%,
      var(--bb8-bg) 96%
    ),
    linear-gradient(
      var(--bb8-bg) 4%,
      var(--accent) 4% 10%,
      transparent 10% 90%,
      var(--accent) 90% 96%,
      var(--bb8-bg) 96%
    ),
    linear-gradient(
      to right,
      transparent 2.156em,
      silver 2.156em 2.219em,
      transparent 2.188em
    ),
    linear-gradient(
      transparent 2.156em,
      silver 2.156em 2.219em,
      transparent 2.188em
    );
  background-color: var(--bb8-bg);
}

.bb8__body::after {
  content: "";
  bottom: 1.5em;
  left: 0.563em;
  position: absolute;
  width: 0.188em;
  height: 0.188em;
  background: rgb(236, 236, 236);
  color: rgb(236, 236, 236);
  border-radius: 50%;
  -webkit-box-shadow: 0.875em 0.938em, 0 -1.25em, 0.875em -2.125em,
    2.125em -2.125em, 3.063em -1.25em, 3.063em 0, 2.125em 0.938em;
  box-shadow: 0.875em 0.938em, 0 -1.25em, 0.875em -2.125em, 2.125em -2.125em,
    3.063em -1.25em, 3.063em 0, 2.125em 0.938em;
}

.bb8__body::before {
  content: "";
  width: 2.625em;
  height: 2.625em;
  position: absolute;
  border-radius: 50%;
  z-index: 0.1;
  overflow: hidden;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.313em solid var(--accent);
  background: radial-gradient(
      1em circle at center,
      rgb(236, 236, 236) 50%,
      transparent 51%
    ),
    radial-gradient(1.25em circle at center, var(--bb8-bg) 50%, transparent 51%),
    linear-gradient(
      -90deg,
      transparent 42%,
      var(--accent) 42% 58%,
      transparent 58%
    ),
    linear-gradient(var(--bb8-bg) 42%, var(--accent) 42% 58%, var(--bb8-bg) 58%);
}

.artificial__hidden {
  position: absolute;
  border-radius: inherit;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bb8__shadow {
  content: "";
  width: var(--bb8-diameter);
  height: 20%;
  border-radius: 50%;
  background: #3a271c;
  -webkit-box-shadow: 0.313em 0 3.125em #3a271c;
  box-shadow: 0.313em 0 3.125em #3a271c;
  opacity: 0.25;
  position: absolute;
  bottom: 0;
  left: calc(var(--toggle-offset) - 0.938em);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: skew(-70deg);
  -ms-transform: skew(-70deg);
  transform: skew(-70deg);
  z-index: 1;
}

.bb8-toggle__scenery {
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  position: relative;
  border-radius: inherit;
}

.bb8-toggle__scenery::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: #b18d71;
  z-index: 1;
}

.bb8-toggle__cloud {
  z-index: 1;
  position: absolute;
  border-radius: 50%;
}

.bb8-toggle__cloud:nth-last-child(1) {
  width: 0.875em;
  height: 0.625em;
  -webkit-filter: blur(0.125em) drop-shadow(0.313em 0.313em #ffffffae)
    drop-shadow(-0.625em 0 #fff) drop-shadow(-0.938em -0.125em #fff);
  filter: blur(0.125em) drop-shadow(0.313em 0.313em #ffffffae)
    drop-shadow(-0.625em 0 #fff) drop-shadow(-0.938em -0.125em #fff);
  right: 1.875em;
  top: 2.813em;
  background: linear-gradient(to top right, #ffffffae, #ffffffae);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8-toggle__cloud:nth-last-child(2) {
  top: 0.625em;
  right: 4.375em;
  width: 0.875em;
  height: 0.375em;
  background: #dfdedeae;
  -webkit-filter: blur(0.125em) drop-shadow(-0.313em -0.188em #e0dfdfae)
    drop-shadow(-0.625em -0.188em #bbbbbbae) drop-shadow(-1em 0.063em #cfcfcfae);
  filter: blur(0.125em) drop-shadow(-0.313em -0.188em #e0dfdfae)
    drop-shadow(-0.625em -0.188em #bbbbbbae) drop-shadow(-1em 0.063em #cfcfcfae);
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.bb8-toggle__cloud:nth-last-child(3) {
  top: 1.25em;
  right: 0.938em;
  width: 0.875em;
  height: 0.375em;
  background: #ffffffae;
  -webkit-filter: blur(0.125em) drop-shadow(0.438em 0.188em #ffffffae)
    drop-shadow(-0.625em 0.313em #ffffffae);
  filter: blur(0.125em) drop-shadow(0.438em 0.188em #ffffffae)
    drop-shadow(-0.625em 0.313em #ffffffae);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.gomrassen,
.hermes,
.chenini {
  position: absolute;
  border-radius: var(--radius);
  background: linear-gradient(#fff, #6e8ea2);
  top: 100%;
}

.gomrassen {
  left: 0.938em;
  width: 1.875em;
  height: 1.875em;
  -webkit-box-shadow: 0 0 0.188em #ffffff52, 0 0 0.188em #6e8ea24b;
  box-shadow: 0 0 0.188em #ffffff52, 0 0 0.188em #6e8ea24b;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.gomrassen::before,
.gomrassen::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  -webkit-box-shadow: inset 0 0 0.063em rgb(140, 162, 169);
  box-shadow: inset 0 0 0.063em rgb(140, 162, 169);
  background: rgb(184, 196, 200);
}

.gomrassen::before {
  left: 0.313em;
  top: 0.313em;
  width: 0.438em;
  height: 0.438em;
}

.gomrassen::after {
  width: 0.25em;
  height: 0.25em;
  left: 1.25em;
  top: 0.75em;
}

.hermes {
  left: 3.438em;
  width: 0.625em;
  height: 0.625em;
  -webkit-box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
  box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.chenini {
  left: 4.375em;
  width: 0.5em;
  height: 0.5em;
  -webkit-box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
  box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.tatto-1,
.tatto-2 {
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  border-radius: var(--radius);
}

.tatto-1 {
  background: #fefefe;
  right: 3.125em;
  top: 0.625em;
  -webkit-box-shadow: 0 0 0.438em #fdf4e1;
  box-shadow: 0 0 0.438em #fdf4e1;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.tatto-2 {
  background: linear-gradient(#e6ac5c, #d75449);
  right: 1.25em;
  top: 2.188em;
  -webkit-box-shadow: 0 0 0.438em #e6ad5c3d, 0 0 0.438em #d755494f;
  box-shadow: 0 0 0.438em #e6ad5c3d, 0 0 0.438em #d755494f;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.bb8-toggle__star {
  position: absolute;
  width: 0.063em;
  height: 0.063em;
  background: #fff;
  border-radius: var(--radius);
  -webkit-filter: drop-shadow(0 0 0.063em #fff);
  filter: drop-shadow(0 0 0.063em #fff);
  color: #fff;
  top: 100%;
}

.bb8-toggle__star:nth-child(1) {
  left: 3.75em;
  -webkit-box-shadow: 1.25em 0.938em, -1.25em 2.5em, 0 1.25em, 1.875em 0.625em,
    -3.125em 1.875em, 1.25em 2.813em;
  box-shadow: 1.25em 0.938em, -1.25em 2.5em, 0 1.25em, 1.875em 0.625em,
    -3.125em 1.875em, 1.25em 2.813em;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.bb8-toggle__star:nth-child(2) {
  left: 4.688em;
  -webkit-box-shadow: 0.625em 0, 0 0.625em, -0.625em -0.625em, 0.625em 0.938em,
    -3.125em 1.25em, 1.25em -1.563em;
  box-shadow: 0.625em 0, 0 0.625em, -0.625em -0.625em, 0.625em 0.938em,
    -3.125em 1.25em, 1.25em -1.563em;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.bb8-toggle__star:nth-child(3) {
  left: 5.313em;
  -webkit-box-shadow: -0.625em -0.625em, -2.188em 1.25em, -2.188em 0,
    -3.75em -0.625em, -3.125em -0.625em, -2.5em -0.313em, 0.75em -0.625em;
  box-shadow: -0.625em -0.625em, -2.188em 1.25em, -2.188em 0, -3.75em -0.625em,
    -3.125em -0.625em, -2.5em -0.313em, 0.75em -0.625em;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.bb8-toggle__star:nth-child(4) {
  left: 1.875em;
  width: 0.125em;
  height: 0.125em;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.bb8-toggle__star:nth-child(5) {
  left: 5em;
  width: 0.125em;
  height: 0.125em;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.bb8-toggle__star:nth-child(6) {
  left: 2.5em;
  width: 0.125em;
  height: 0.125em;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.bb8-toggle__star:nth-child(7) {
  left: 3.438em;
  width: 0.125em;
  height: 0.125em;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

/* actions */

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(1) {
  top: 0.625em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(2) {
  top: 1.875em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(3) {
  top: 1.25em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(4) {
  top: 3.438em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(5) {
  top: 3.438em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(6) {
  top: 0.313em;
}

.bb8-toggle__checkbox:checked
  + .bb8-toggle__container
  .bb8-toggle__star:nth-child(7) {
  top: 1.875em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8-toggle__cloud {
  right: -100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .gomrassen {
  top: 0.938em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .hermes {
  top: 2.5em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .chenini {
  top: 2.75em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container {
  background-position-y: 0;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .tatto-1 {
  top: 100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .tatto-2 {
  top: 100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8 {
  left: calc(100% - var(--bb8-diameter) - var(--toggle-offset));
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8__shadow {
  left: calc(100% - var(--bb8-diameter) - var(--toggle-offset) + 0.938em);
  -webkit-transform: skew(70deg);
  -ms-transform: skew(70deg);
  transform: skew(70deg);
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8__body {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(225deg);
}

.bb8-toggle__checkbox:hover + .bb8-toggle__container .bb8__head::before {
  left: 100%;
}

.bb8-toggle__checkbox:not(:checked):hover
  + .bb8-toggle__container
  .bb8__antenna:nth-child(1) {
  right: 1.5em;
}

.bb8-toggle__checkbox:hover
  + .bb8-toggle__container
  .bb8__antenna:nth-child(2) {
  left: 0.938em;
}

.bb8-toggle__checkbox:hover + .bb8-toggle__container .bb8__head::after {
  background-position: 1.375em 0;
}

.bb8-toggle__checkbox:checked:hover
  + .bb8-toggle__container
  .bb8__head::before {
  left: 0;
}

.bb8-toggle__checkbox:checked:hover
  + .bb8-toggle__container
  .bb8__antenna:nth-child(2) {
  left: calc(100% - 0.938em);
}

.bb8-toggle__checkbox:checked:hover + .bb8-toggle__container .bb8__head::after {
  background-position: -1.375em 0;
}

.bb8-toggle__checkbox:active + .bb8-toggle__container .bb8__head-container {
  -webkit-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  transform: rotate(25deg);
}

.bb8-toggle__checkbox:checked:active
  + .bb8-toggle__container
  .bb8__head-container {
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

.bb8:hover .bb8__head::before,
.bb8:hover .bb8__antenna:nth-child(2) {
  left: 50% !important;
}

.bb8:hover .bb8__antenna:nth-child(1) {
  right: 0.938em !important;
}

.bb8:hover .bb8__head::after {
  background-position: 0 0 !important;
}

/* Comprehensive Mobile Responsive Fixes */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  /* Fix header height on mobile */
  .header {
    padding: 1rem 0;
    min-height: auto;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.8rem;
    margin-bottom: 0;
  }

  .nav-links {
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }

  .feature-grid,
  .pricing-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .flip-cards-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .flip-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .integration-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    padding: 0 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .hero {
    flex-direction: column;
    padding: 8rem 1rem 3rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Fix any elements that might cause horizontal scroll */
  * {
    max-width: 100%;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .testimonials-grid {
    padding: 0 1rem;
  }

  /* Fix process steps to be vertical on mobile */
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .process-steps::after {
    display: none; /* Hide the connecting line on mobile */
  }

  .process-step {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0 auto;
  }

  .step-number {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem;
  }

  .process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Fix audit section text and button sizes on mobile */
  .audit-section .section-subtitle {
    font-size: 1.2rem !important;
    white-space: normal !important;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .btn-cta-special {
    font-size: 0.65rem !important; /* 35% smaller than 0.9rem */
    padding: 0.8rem 1rem !important;
    line-height: 1.2;
  }

  .click-here-text {
    font-size: 0.55rem !important; /* 35% smaller than 0.8rem */
  }

  /* Fix form submit button on mobile */
  .form-submit {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  /* Fix popup titles on mobile */
  .form-popup-header h3,
  .popup-title h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .popup-title p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Ideas Brought To Life Section */
.ideas-section {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--background-alt) 100%
  );
  position: relative;
  overflow: hidden;
}

.ideas-section::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(0, 128, 255, 0.05) 0%,
    rgba(139, 92, 246, 0.03) 50%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.ideas-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(0, 128, 255, 0.03) 50%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.idea-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.idea-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
  border-color: var(--accent);
}

.idea-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.idea-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.idea-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.idea-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.idea-link::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: 0.5s;
}

.idea-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.idea-link:hover::before {
  left: 100%;
}

/* QR Code Section */
.qr-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.qr-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 0;
}

.qr-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.qr-text h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.qr-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.qr-text h2.section-title {
  color: white !important;
}

.qr-section .section-title {
  color: white !important;
}

/* Force white color for QR section title - AGGRESSIVE OVERRIDE */
#qr-section .section-title,
#qr-section h2.section-title,
.qr-section h2.section-title.animate-on-scroll,
.qr-section .section-title,
.qr-text h2,
.qr-text .section-title,
section#qr-section h2,
section.qr-section h2 {
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* REBUILT SISU WIDGET - BULLETPROOF VERSION */
.sisu-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
}

.sisu-widget.expanded {
  right: 20px;
  bottom: 20px;
  width: 320px;
  height: 400px;
  max-height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 15px 15px 0 0;
  box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.3);
}

/* Main Widget Container */
.widget-main-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Sisu Photo Container (Non-clickable) */
.sisu-photo-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Message Button (Clickable trigger) */
.widget-message-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10000;
}

.widget-message-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.widget-message-button:active {
  transform: scale(0.95);
}

/* Hide main container when expanded */
.sisu-widget.expanded .widget-main-container {
  display: none;
}

.sisu-widget-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.widget-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.sisu-widget.expanded .widget-pulse {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

.sisu-widget-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.sisu-widget.expanded .sisu-widget-sidebar {
  opacity: 1;
  pointer-events: all;
}

.widget-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-sidebar-header h3 {
  color: white;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.widget-sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.widget-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qr-code-wrapper {
  text-align: center;
}

.qr-code {
  background: white;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qr-code img {
  display: block;
  width: 120px;
  height: 120px;
}

.qr-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 10px 0;
}

.qr-preview-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.qr-preview-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  margin: 8px 0;
  font-size: 14px;
}

.contact-details strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive design for widget */
@media (max-width: 768px) {
  .sisu-widget.expanded {
    width: 300px;
  }

  .sisu-photo-container {
    width: 50px;
    height: 50px;
  }

  .sisu-widget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .sisu-widget.expanded {
    width: 280px;
  }

  .sisu-photo-container {
    width: 45px;
    height: 45px;
  }

  .sisu-widget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.qr-text .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.qr-codes-container {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.qr-codes-container::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.qr-codes-container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
}

.qr-code-wrapper {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 170px;
}

.qr-code {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  display: inline-block;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.qr-code img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.qr-code.venmo-qr img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.qr-description {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 1rem;
}

.qr-actions {
  margin-top: 1rem;
}

.qr-preview-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.qr-preview-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: 0.5s;
}

.qr-preview-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.qr-preview-btn:hover::before {
  left: 100%;
}

.qr-preview-btn:active {
  transform: translateY(0);
}

.qr-preview-btn i {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .qr-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .qr-codes-container {
    flex-direction: column;
    align-items: center;
  }

  .qr-code-wrapper {
    width: 100%;
    max-width: 200px;
  }

  .ideas-grid {
    grid-template-columns: 1fr;
  }
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  width: 90%;
  max-width: 800px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.popup-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 0;
}

.popup-title {
  flex: 1;
  position: relative;
  z-index: 1;
}

.popup-header h3 {
  margin: 0 0 0.5rem 0;
  color: white;
  font-size: 1.8rem;
  line-height: 1.3;
}

.popup-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
}

.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.popup-content {
  padding: 0;
  max-height: 80vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .popup-container {
    width: 95%;
  }

  .popup-header {
    padding: 1.2rem;
    flex-direction: column;
  }

  .popup-header h3 {
    font-size: 1.4rem;
  }

  .popup-header p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }

  .btn-cta-special {
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal;
  }
}

/* AI Chat Section Styling */
.ai-chat-section {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-chat-section h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 280px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 85%;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-message.user {
  background: #4caf50;
  color: white;
  margin-left: auto;
  text-align: right;
  border-bottom-right-radius: 4px;
}

.chat-message.ai {
  background: white;
  color: #333;
  margin-right: auto;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-input-container {
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.chat-send-btn {
  width: 50px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.chat-send-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Contact Links Styling */
.contact-details h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.contact-link {
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: white;
  text-shadow: 0 0 5px var(--primary);
}

/* AI Audit Form Popup */
.form-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.form-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-popup-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.form-popup-overlay.active .form-popup-container {
  transform: scale(1);
}

.form-popup-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-popup-header h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.form-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.form-popup-content {
  padding: 2rem;
  background: white;
  overflow-y: auto;
  flex: 1;
  max-height: calc(90vh - 100px);
}

/* Custom scrollbar for popup content */
.form-popup-content::-webkit-scrollbar {
  width: 8px;
}

.form-popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.form-popup-content::-webkit-scrollbar-thumb {
  background: #7cb342;
  border-radius: 4px;
}

.form-popup-content::-webkit-scrollbar-thumb:hover {
  background: #6ba02f;
}

.form-popup-content iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 10px;
}

/* Mobile responsive for popup */
@media (max-width: 768px) {
  .form-popup-container {
    width: 95%;
    max-height: 85vh;
  }

  .form-popup-header {
    padding: 1rem;
  }

  .form-popup-header h3 {
    font-size: 1.2rem;
  }

  .form-popup-content {
    padding: 0.5rem;
  }

  .form-popup-content iframe {
    min-height: 500px;
  }
}

/* Multi-Step Form Styles */

/* Form Header Section */
.form-header-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.form-main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #7cb342;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.urgency-message {
  background: linear-gradient(135deg, #ff5722, #ff7043);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.urgency-message i {
  margin: 0 8px;
  animation: pulse 2s infinite;
}

.value-proposition {
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
  animation: slowBounce 3s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes slowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.form-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.progress-container {
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  width: 25%;
  transition: width 0.3s ease;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

/* Form Step Styles */
.audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #7cb342;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-title {
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

.step-title {
  color: #7cb342;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.step-subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0 0 25px 0;
  line-height: 1.4;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7cb342;
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.helper-text {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* Checkbox Group Styles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-label:hover {
  background: #f5f5f5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7cb342;
}

/* Navigation Styles */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.nav-btn {
  background: #f5f5f5;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn:hover {
  background: #e0e0e0;
  border-color: #ccc;
}

.next-btn {
  background: linear-gradient(135deg, #7cb342, #8bc34a);
  color: white;
  border-color: #7cb342;
}

.next-btn:hover {
  background: linear-gradient(135deg, #6ba02f, #7cb342);
  transform: translateY(-1px);
}

.form-submit-btn {
  background: linear-gradient(135deg, #ff5722, #ff7043);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsive for Multi-Step Form */
@media (max-width: 768px) {
  .form-popup-container {
    width: 95%;
    max-height: 95vh;
    margin: 10px;
  }

  .form-popup-content {
    padding: 20px;
    max-height: calc(95vh - 80px);
  }

  .step-title {
    font-size: 1.2rem;
  }

  .form-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .nav-btn,
  .form-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .checkbox-group {
    gap: 8px;
  }

  .checkbox-label {
    padding: 6px;
    font-size: 0.9rem;
  }

  .form-main-title {
    font-size: 2rem;
  }

  .urgency-message {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .value-proposition {
    font-size: 1.1rem;
    padding: 12px 25px;
  }

  .receive-grid {
    grid-template-columns: 1fr;
  }
}

/* What You'll Receive Section */
.what-youll-receive {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  border: 2px solid #e9ecef;
}

.receive-header {
  text-align: center;
  margin-bottom: 25px;
}

.receive-header i {
  color: #7cb342;
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.receive-header h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.receive-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.receive-item:hover {
  transform: translateY(-2px);
}

.receive-item i {
  color: #7cb342;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.receive-item span {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}
