/* CSS Variables - Design System */
:root {
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(222.2, 84%, 4.9%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222.2, 84%, 4.9%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(222.2, 84%, 4.9%);
  --primary: hsl(270, 100%, 36%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(270, 15%, 95%);
  --secondary-foreground: hsl(270, 100%, 36%);
  --muted: hsl(270, 15%, 96%);
  --muted-foreground: hsl(215.4, 16.3%, 46.9%);
  --accent: hsl(270, 25%, 90%);
  --accent-foreground: hsl(270, 100%, 36%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --border: hsl(214.3, 31.8%, 91.4%);
  --input: hsl(214.3, 31.8%, 91.4%);
  --ring: hsl(270, 100%, 36%);
  --brand-primary: hsl(270, 100%, 36%);
  --brand-gradient: linear-gradient(135deg, hsl(270, 100%, 36%), hsl(280, 100%, 50%));
  --brand-glow: 0 0 40px hsl(270, 100%, 36%, 0.3);
  --shadow-elegant: 0 10px 30px -10px hsl(270, 100%, 36%, 0.2);
  --shadow-glow: 0 0 40px hsl(270, 100%, 36%, 0.15);
  --radius: 0.5rem;
}

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

body {
  font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, transparent 0%, hsl(270, 100%, 36%, 0.008) 25%, transparent 50%, hsl(270, 100%, 36%, 0.005) 75%, transparent 100%),
    linear-gradient(45deg, transparent 0%, hsl(270, 100%, 36%, 0.003) 50%, transparent 100%);
  background-size: 400px 400px, 600px 600px;
  background-position: 0 0, 200px 200px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
}

.section-header {
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(270, 100%, 32%);
}

.btn-outline {
  border-color: var(--border);
  background-color: var(--card);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, hsl(270, 100%, 36%, 0.05) 0%, var(--background) 50%, hsl(270, 100%, 36%, 0.1) 100%);
  padding: 2rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='hexagons' x='0' y='0' width='60' height='52' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='30,2 50,15 50,35 30,48 10,35 10,15' fill='none' stroke='%236700b5' stroke-width='0.5' opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23hexagons)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, hsl(270, 100%, 36%, 0.02) 0%, transparent 50%, hsl(270, 100%, 36%, 0.01) 100%);
  background-size: 120px 120px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

@media (min-width: 1024px) {
  .hero-section {
    padding: 3rem 0 6rem;
  }
}

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-primary {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transform: scale(1.2);
  transform-origin: center;
}

@media (min-width: 1024px) {
  .hero-img {
    transform: scale(1.4);
  }
}

/* Statistics Section */
.statistics-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' x='0' y='0' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='1' fill='white' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23dots)'/%3E%3C/svg%3E"),
    linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  background-size: 100px 100px, 200px 200px;
  background-position: 0 0, 50px 50px;
  pointer-events: none;
  z-index: 0;
}

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

.statistics-grid {
  display: grid;
  gap: 2rem;
}

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

.statistic-card {
  text-align: center;
  padding: 2rem 1rem;
}

.statistic-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .statistic-number {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .statistic-number {
    font-size: 4rem;
  }
}

.statistic-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.statistic-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Problem Section */
.problem-section {
  padding: 5rem 0;
  background-color: hsl(270, 15%, 96%, 0.3);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='triangles' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='20,5 35,30 5,30' fill='none' stroke='%236700b5' stroke-width='0.3' opacity='0.06'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23triangles)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, transparent 0%, hsl(270, 100%, 36%, 0.01) 50%, transparent 100%);
  background-size: 80px 80px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.pain-points-grid {
  display: grid;
  gap: 2rem;
}

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

.pain-point-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(0, 0%, 99%) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.pain-point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--destructive) 0%, hsl(0, 84.2%, 70.2%) 100%);
  opacity: 1;
}

.pain-point-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-point-icon {
  display: flex;
  justify-content: center;
}

.pain-point-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--destructive);
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.pain-point-icon i {
  font-size: 2rem;
  color: var(--destructive);
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.pain-point-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.pain-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--foreground);
  padding-left: 0;
  margin-top: 0.5rem;
}

.pain-point-list li {
  font-size: 0.9rem;
  position: relative;
  padding: 0.75rem 0;
  line-height: 1.6;
  font-weight: 500;
}

.pain-point-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--destructive) 20%, var(--destructive) 80%, transparent 100%);
  opacity: 0.6;
}

/* Solution Section */
.solution-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' x='0' y='0' width='25' height='25' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 25 0 L 0 0 0 25' fill='none' stroke='%236700b5' stroke-width='0.2' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E"),
    linear-gradient(45deg, transparent 0%, hsl(270, 100%, 36%, 0.005) 50%, transparent 100%);
  background-size: 100px 100px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.solution-stepper {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.stepper-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-button {
  width: 100%;
  text-align: left;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-button:hover {
  background-color: var(--accent);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.step-button.active {
  background-color: var(--secondary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(103, 0, 255, 0.15);
}

.step-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: hsl(270, 15%, 88%);
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}

.step-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brand-gradient);
  transition: width 5s linear;
  border-radius: 0 0 var(--radius) var(--radius);
}

.step-content {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
  background-color: var(--background);
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.step-number.active {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(103, 0, 255, 0.1);
}

.step-info {
  flex: 1;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.4;
}

.step-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.step-bullets {
  list-style: none;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-bullets li {
  position: relative;
  padding-left: 1.5rem;
}

.step-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.step-bullets.hidden {
  display: none;
}

.stepper-image {
  position: sticky;
  top: 1.5rem;
}

.image-container {
  max-height: 600px;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 3D Certificate Animation */
.certificate-3d-container {
  position: absolute;
  top: 18rem;
  left: 0;
  right: 0;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 1;
}

.certificate-3d-wrapper {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.certificate-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  cursor: pointer;
}

.certificate-img {
  width: 100%;
  height: auto;
  max-width: 448px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.certificate-3d:hover .certificate-img {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.certificate-tags {
  position: absolute;
  top: 1rem;
  right: 1rem;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.certificate-tag {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(103, 0, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  /* Remove floating animation */
}

/* Mobile fallback - disable 3D effects on touch devices */
@media (max-width: 768px), (hover: none) {
  .certificate-3d-container {
    perspective: none;
    top: 8rem;
    bottom: 1rem;
  }
  
  .certificate-img {
    max-width: 392px;
  }
  
  .certificate-3d {
    transform: none !important;
    transition: none;
  }
  
  .certificate-3d:hover .certificate-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .certificate-tags {
    position: absolute;
    top: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    justify-content: flex-start;
  }
  
  .certificate-tag {
    position: static;
    align-self: auto;
  }
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: hsl(270, 15%, 96%, 0.3);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236700b5' fill-opacity='0.015' fill-rule='evenodd'%3E%3Cpath d='M20 20c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10zm0 0c0 5.523 4.477 10 10 10s10-4.477 10-10-4.477-10-10-10-10 4.477-10 10z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.features-section::before {
  background-image: none !important;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  color: var(--primary);
}

.feature-headline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.feature-description {
  color: var(--muted-foreground);
}

.feature-proof {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius);
  width: fit-content;
}

/* Social Proof Section */
.social-proof-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(270, 100%, 36%, 0.08) 0%, hsl(270, 100%, 36%, 0.03) 50%, hsl(270, 100%, 36%, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.testimonial-main {
  background: linear-gradient(90deg, hsl(270, 100%, 36%, 0.05) 0%, hsl(270, 100%, 36%, 0.1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
  display: grid;
  gap: 2rem;
}

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

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-company {
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonial-detail {
  color: var(--muted-foreground);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-indicators {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.trust-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  min-width: 120px;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  font-size: 2.5rem;
  opacity: 0.7;
}

.logo-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-align: center;
}

@media (max-width: 768px) {
  .trust-logos {
    gap: 1.5rem;
  }
  
  .trust-logo {
    min-width: 100px;
    padding: 0.75rem;
  }
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    opacity: 0.7;
  }
  
  .logo-text {
    font-size: 0.75rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .author-avatar {
    align-self: flex-end;
  }
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.875rem;
}

.author-company {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.author-avatar svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Security Section */
.security-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='diamonds' x='0' y='0' width='35' height='35' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='17.5,5 30,17.5 17.5,30 5,17.5' fill='none' stroke='%236700b5' stroke-width='0.2' opacity='0.03'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='140' height='140' fill='url(%23diamonds)'/%3E%3C/svg%3E"),
    linear-gradient(45deg, transparent 0%, hsl(270, 100%, 36%, 0.003) 50%, transparent 100%);
  background-size: 140px 140px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.security-grid {
  display: grid;
  gap: 1.5rem;
}

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

.security-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.security-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.security-icon {
  width: 6rem;
  height: 6rem;
  color: var(--primary);
  margin: 0 auto;
}

.security-title {
  font-weight: 700;
}

.security-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Security Deployment Options */
.security-deployment-options {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .security-deployment-options {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.deployment-primary {
  background: linear-gradient(135deg, var(--primary), hsl(280, 100%, 50%));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.deployment-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.deployment-secondary {
  background-color: var(--card);
  border: 2px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
}

.deployment-secondary::before {
  content: 'Optional';
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.deployment-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.deployment-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.deployment-icon.primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.deployment-icon.secondary {
  background: var(--secondary);
  color: var(--primary);
}

.deployment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.deployment-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
}

.deployment-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.deployment-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.feature-check {
  color: #10b981;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.deployment-primary .feature-check {
  color: #a7f3d0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='lines' x='0' y='0' width='45' height='45' patternUnits='userSpaceOnUse'%3E%3Cline x1='0' y1='22.5' x2='45' y2='22.5' stroke='%236700b5' stroke-width='0.2' opacity='0.02'/%3E%3Cline x1='22.5' y1='0' x2='22.5' y2='45' stroke='%236700b5' stroke-width='0.2' opacity='0.02'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='180' height='180' fill='url(%23lines)'/%3E%3C/svg%3E"),
    linear-gradient(45deg, transparent 0%, hsl(270, 100%, 36%, 0.002) 50%, transparent 100%);
  background-size: 180px 180px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.faq-item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e7eb;
  transition: all 0.3s ease;
}

.faq-item.expanded::before {
  background-color: #7700b5;
  height: 2px;
}

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

.faq-question:hover {
  background-color: transparent;
  color: #7700b5;
}

.faq-question[aria-expanded="true"] {
  color: #7700b5;
}

.faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-plus,
.faq-x {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6b7280;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-x {
  opacity: 0;
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-plus {
  opacity: 0;
  transform: rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-x {
  opacity: 1;
  transform: rotate(0deg);
  color: #7700b5;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-answer.open {
  padding: 0 0 1.5rem 0;
  max-height: 300px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.faq-link {
  color: #7700b5;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: #5a0080;
}

/* FAQ Contact Message */
.faq-contact {
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.faq-contact-text {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin: 0;
}

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

.faq-contact-text a:hover {
  color: hsl(270, 100%, 32%);
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(90deg, hsl(270, 100%, 36%, 0.1) 0%, hsl(270, 100%, 36%, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circles' x='0' y='0' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='25' cy='25' r='8' fill='none' stroke='%236700b5' stroke-width='0.4' opacity='0.06'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23circles)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, hsl(270, 100%, 36%, 0.03) 0%, transparent 50%, hsl(270, 100%, 36%, 0.01) 100%);
  background-size: 200px 200px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.cta-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

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

.form-note {
  color: var(--muted-foreground);
  text-align: center;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-buttons {
    flex-direction: row;
  }
}

.form-footer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Demo Page Styles */
.demo-page {
  min-height: 100vh;
  padding: 2.5rem 0;
}

.demo-container {
  max-width: 768px;
}

.demo-header {
  margin-bottom: 2rem;
}

.demo-title {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .demo-title {
    font-size: 2.5rem;
  }
}

.demo-subtitle {
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.demo-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.demo-card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .demo-card-content {
    padding: 2rem;
  }
}

.form-required-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-section-full {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.form-label.required {
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 0.875rem;
  transition: border-color 0.2s ease-in-out;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(270, 100%, 36%, 0.2);
}

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

.security-notice {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.security-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.security-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.security-title {
  font-weight: 500;
}

.terms-agreement {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.terms-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.terms-link {
  color: var(--primary);
  text-decoration: underline;
}

.response-time {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.response-time-title {
  font-weight: 600;
}

/* Toast */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-elegant);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.toast.show {
  transform: translateX(0);
}

.toast.hidden {
  display: none;
}

.toast-content {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
}

.toast-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.toast-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Utility Classes */
.hidden {
  display: none;
}

/* EHS Outcomes Strip */
.hero-outcomes {
  margin-top: 1rem;
}

.outcomes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

@media (max-width: 900px) {
  .outcomes-list {
    grid-template-columns: 1fr;
  }
}

.outcome {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  position: relative;
  padding-left: 44px;
}

.outcome::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.outcome-kicker {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--primary);
}

.outcome-text {
  opacity: 0.9;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

/* Compatibility Strip */
.compatibility-strip {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* EHS Designed Section */
.ehs-designed-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.ehs-footnote {
  text-align: center;
  margin-top: 2rem;
}

.ehs-footnote small {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='waves' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0,20 Q10,10 20,20 T40,20' fill='none' stroke='%236700b5' stroke-width='0.3' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='160' height='160' fill='url(%23waves)'/%3E%3C/svg%3E"),
    linear-gradient(135deg, transparent 0%, hsl(270, 100%, 36%, 0.006) 50%, transparent 100%);
  background-size: 160px 160px, 100% 100%;
  background-position: 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-card.featured {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .blog-card.featured {
    grid-column: 1 / 2;
  }
}

.blog-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-icon {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 1.5rem 1.5rem 0;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-title a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.blog-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* AI Enhancement Section */
.ai-enhancement-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, hsl(270, 100%, 36%, 0.02) 0%, var(--background) 50%, hsl(280, 100%, 50%, 0.01) 100%);
  position: relative;
}

.ai-enhancement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, hsl(270, 100%, 36%, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, hsl(280, 100%, 50%, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.ai-enhancement-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(270, 100%, 36%, 0.08) 0%, hsl(280, 100%, 50%, 0.08) 100%);
  border: 1px solid hsl(270, 100%, 36%, 0.15);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.ai-badge i {
  font-size: 1rem;
}

.ai-enhancement-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ai-enhancement-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.ai-enhancement-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.ai-section-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
  border-radius: 1px;
}

.ai-benefits-line,
.ai-considerations-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .ai-benefits-line,
  .ai-considerations-line {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ai-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-item.benefit::before {
  background: linear-gradient(90deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
}

.ai-item.consideration::before {
  background: linear-gradient(90deg, var(--primary) 0%, hsl(280, 100%, 50%) 100%);
}

.ai-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.ai-item:hover::before {
  opacity: 1;
}

.ai-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-content-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-item.benefit .ai-content-header i {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-item.consideration .ai-content-header i {
  width: 4rem;
  height: 4rem;
  color: var(--muted-foreground);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.ai-item.consideration:hover .ai-content-header i {
  color: var(--primary);
}

.ai-content h4 {
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.ai-item.consideration .ai-content h4 {
  color: var(--muted-foreground);
}

.ai-item.consideration:hover .ai-content h4 {
  color: var(--primary);
}

.ai-content p {
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

.ai-enhancement-footer {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-footer-text {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ai-enhancement-title {
    font-size: 2rem;
  }
}

