/* Main Website Styles - Replacing Tailwind CSS */

/* CSS Variables for Colors */
:root {
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-gray-950: #030712;
  
  --color-purple-400: #c084fc;
  --color-purple-500: #a855f7;
  --color-purple-600: #9333ea;
  --color-purple-700: #7e22ce;
  --color-purple-800: #6b21a8;
  
  --color-red-600: #dc2626;
  --color-red-800: #991b1b;
  
  --color-green-100: #dcfce7;
  --color-green-300: #86efac;
  --color-green-800: #166534;
  --color-green-900: #14532d;
  
  --color-cyan-400: #22d3ee;
  --color-blue-500: #3b82f6;
  
  --color-white: #ffffff;
  --color-black: #000000;
  
  --color-base-900: #121212;
}

/* Dark Mode Support */
.dark {
  color-scheme: dark;
}

/* Dark Mode Body Background - Matching CRM */
.dark body,
.dark html {
  background-color: var(--color-base-900);
}

/* Base-900 background utility */
.bg-base-900 {
  background-color: var(--color-base-900);
}

/* Dark mode only class - no default, only applies in dark mode */
.dark\:bg-base-900 {
  /* No default background */
}

.dark .bg-base-900,
.dark .dark\:bg-base-900 {
  background-color: var(--color-base-900);
}

/* Gray-950 background utility */
.bg-gray-950 {
  background-color: var(--color-gray-950);
}

/* Dark mode only class for gray-950 */
.dark\:bg-gray-950 {
  /* No default background */
}

.dark .bg-gray-950,
.dark .dark\:bg-gray-950 {
  background-color: var(--color-gray-950);
}

/* Base-900 background utility */
.bg-base-900 {
  background-color: var(--color-base-900);
}

/* Dark mode only class - no default, only applies in dark mode */
.dark\:bg-base-900 {
  /* No default background */
}

.dark .bg-base-900,
.dark .dark\:bg-base-900 {
  background-color: var(--color-base-900);
}

/* Base Reset */
* {
  box-sizing: border-box;
}

/* Layout Utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-screen-xl {
  max-width: 1280px;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.flex-grow {
  flex-grow: 1;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.lg\:col-span-2 {
  grid-column: span 2 / span 2;
}

/* Spacing Utilities */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-5 {
  column-gap: 1.25rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-y-0 {
  row-gap: 0;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Padding Utilities */
.p-1\.5 {
  padding: 0.375rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-auto {
  margin-top: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-8 {
  margin-left: 2rem;
}

.mr-1\.5 {
  margin-right: 0.375rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-12 {
  margin-right: 3rem;
}

.-mr-6 {
  margin-right: -1.5rem;
}

.-m-1\.5 {
  margin: -0.375rem;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Width & Height Utilities */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-24 {
  width: 6rem;
}

.w-40 {
  width: 10rem;
}

.w-56 {
  width: 14rem;
}

.w-px {
  width: 1px;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-20 {
  width: 5rem;
}

.w-32 {
  width: 8rem;
}

.h-px {
  height: 1px;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.max-h-0 {
  max-height: 0;
}

.max-h-50 {
  max-height: 50rem;
}

.max-w-50 {
  max-width: 50rem;
}

.min-h-screen {
  min-height: 100vh;
}

.min-w-screen {
  min-width: 100vw;
}

/* Width Responsive */
@media (min-width: 768px) {
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  
  .md\:w-auto {
    width: auto;
  }
  
  .md\:h-\[473px\] {
    height: 473px;
  }
  
  .md\:w-\[840px\] {
    width: 840px;
  }
  
  .md\:pt-40 {
    padding-top: 10rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex !important;
  }
  
  .lg\:w-1\/2 {
    width: 50%;
  }
  
  .lg\:w-2\/5 {
    width: 40%;
  }
  
  .lg\:w-3\/5 {
    width: 60%;
  }
  
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  
  .lg\:pl-4 {
    padding-left: 1rem;
  }
  
  .lg\:pl-8 {
    padding-left: 2rem;
  }
  
  .lg\:w-auto {
    width: auto;
  }
  
  .lg\:w-40 {
    width: 10rem;
  }
  
  .lg\:h-40 {
    height: 10rem;
  }
  
  .lg\:max-w-sm {
    max-width: 24rem;
  }
  
  .lg\:max-w-md {
    max-width: 28rem;
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:gap-16 {
    gap: 4rem;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:pt-24 {
    padding-top: 6rem;
  }
  
  .lg\:pt-3 {
    padding-top: 0.75rem;
  }
  
  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .lg\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
  
  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .lg\:leading-relaxed {
    line-height: 1.625;
  }
  
  .lg\:border-0 {
    border-width: 0;
  }
  
  .lg\:hidden {
    display: none;
  }
  
  .lg\:block {
    display: block;
  }
  
  .lg\:order-3 {
    order: 3;
  }
  
  .lg\:ml-0 {
    margin-left: 0;
  }
  
  .lg\:ml-4 {
    margin-left: 1rem;
  }
  
  .lg\:mt-0 {
    margin-top: 0;
  }
  
  .lg\:mt-10 {
    margin-top: 2.5rem;
  }
  
  .lg\:mt-20 {
    margin-top: 5rem;
  }
  
  .lg\:right-0 {
    right: 0;
  }
  
  .lg\:left-auto {
    left: auto;
  }
  
  .lg\:h-px {
    height: 1px;
  }
}

@media (min-width: 1280px) {
  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .xl\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  
  .xl\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.text-9xl {
  font-size: 8rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-none {
  line-height: 1;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-\[18px\] {
  line-height: 18px;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-extra-relaxed {
  line-height: 1.75;
}

.leading-snug {
  line-height: 1.375;
}

.leading-loose {
  line-height: 2;
}

.leading-9 {
  line-height: 2.25rem;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

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

.text-left {
  text-align: left;
}

/* Colors */
.text-gray-400 {
  color: var(--color-gray-400);
}

.text-gray-500 {
  color: var(--color-gray-500);
}

.text-gray-600 {
  color: var(--color-gray-600);
}

.text-gray-700 {
  color: var(--color-gray-700);
}

.text-gray-900 {
  color: var(--color-gray-900);
}

.text-purple-500 {
  color: var(--color-purple-500);
}

.text-purple-600 {
  color: var(--color-purple-600);
}

.text-purple-700 {
  color: var(--color-purple-700);
}

.text-red-600 {
  color: var(--color-red-600);
}

.text-green-800 {
  color: var(--color-green-800);
}

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

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

/* Background Colors */
.bg-white {
  background-color: var(--color-white);
}

.bg-gray-50 {
  background-color: var(--color-gray-50);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.bg-gray-200 {
  background-color: var(--color-gray-200);
}

.bg-gray-300 {
  background-color: var(--color-gray-300);
}

.bg-gray-700 {
  background-color: var(--color-gray-700);
}

.bg-gray-800 {
  background-color: var(--color-gray-800);
}

.bg-gray-900 {
  background-color: var(--color-gray-900);
}

.bg-gray-950 {
  background-color: var(--color-gray-950);
}

.bg-purple-400 {
  background-color: var(--color-purple-400);
}

.bg-purple-500 {
  background-color: var(--color-purple-500);
}

.bg-purple-600 {
  background-color: var(--color-purple-600);
}

.bg-purple-700 {
  background-color: var(--color-purple-700);
}

.bg-green-100 {
  background-color: var(--color-green-100);
}

.bg-green-900 {
  background-color: var(--color-green-900);
}

.bg-transparent {
  background-color: transparent;
}

/* Borders */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-transparent {
  border-color: transparent;
}

.border-gray-200 {
  border-color: var(--color-gray-200);
}

.border-gray-300 {
  border-color: var(--color-gray-300);
}

.border-gray-400 {
  border-color: var(--color-gray-400);
}

.border-gray-700 {
  border-color: var(--color-gray-700);
}

.border-purple-600 {
  border-color: var(--color-purple-600);
}

.border-red-600 {
  border-color: var(--color-red-600);
}

.border-red-500 {
  border-color: #ef4444;
}

.last\:border-b-0:last-child {
  border-bottom-width: 0;
}

/* Border Radius */
.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-none {
  border-radius: 0;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.top-7 {
  top: 1.75rem;
}

.top-14 {
  top: 3.5rem;
}

.top-16 {
  top: 4rem;
}

.-top-5 {
  top: -1.25rem;
}

.left-0 {
  left: 0;
}

.left-1\/2 {
  left: 50%;
}

.left-10 {
  left: 2.5rem;
}

.left-\[4px\] {
  left: 4px;
}

.left-\[18px\] {
  left: 18px;
}

.top-\[18px\] {
  top: 18px;
}

.top-0\.5 {
  top: 0.125rem;
}

.-right-1 {
  right: -0.25rem;
}

.-right-2 {
  right: -0.5rem;
}

.right-0 {
  right: 0;
}

.z-40 {
  z-index: 40;
}

.z-\[1\] {
  z-index: 1;
}

.z-\[100\] {
  z-index: 100;
}

/* Display */
.block {
  display: block;
}

.hidden {
  display: none;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Transitions */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

/* Transform */
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Hover States */
.hover\:bg-gray-100:hover {
  background-color: var(--color-gray-100);
}

.hover\:bg-gray-200:hover {
  background-color: var(--color-gray-200);
}

.hover\:bg-purple-700:hover {
  background-color: var(--color-purple-700);
}

.hover\:text-gray-400:hover {
  color: var(--color-gray-400);
}

.hover\:text-gray-700:hover {
  color: var(--color-gray-700);
}

.hover\:text-purple-600:hover {
  color: var(--color-purple-600);
}

.hover\:text-purple-700:hover {
  color: var(--color-purple-700);
}

/* Group Hover */
.group:hover .group-hover\:-right-1 {
  right: -0.25rem;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:text-purple-600 {
  color: var(--color-purple-600);
}

.group:hover .group-hover\:text-purple-700 {
  color: var(--color-purple-700);
}

.group:hover .group-hover\:border-gray-900 {
  border-color: var(--color-gray-900);
}

.group:hover .group-hover\:bg-gray-900 {
  background-color: var(--color-gray-900);
}

.group:hover .group-hover\:text-white {
  color: var(--color-white);
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:border-purple-600:focus {
  border-color: var(--color-purple-600);
}

/* Appearance */
.appearance-none {
  appearance: none;
}

/* Line Through */
.line-through {
  text-decoration-line: line-through;
}

/* Opacity */
.opacity-40 {
  opacity: 0.4;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

/* Blur */
.blur-xl {
  filter: blur(24px);
}

.blur-3xl {
  filter: blur(64px);
}

/* Gradient */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-cyan-400 {
  --tw-gradient-from: var(--color-cyan-400);
  --tw-gradient-to: rgb(34 211 238 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-blue-500 {
  --tw-gradient-to: rgb(59 130 246 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(59 130 246), var(--tw-gradient-to);
}

.to-purple-600 {
  --tw-gradient-to: var(--color-purple-600);
}

.from-purple-800 {
  --tw-gradient-from: var(--color-purple-800);
  --tw-gradient-to: rgb(107 33 168 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-red-600 {
  --tw-gradient-from: var(--color-red-600);
  --tw-gradient-to: rgb(220 38 38 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-red-800 {
  --tw-gradient-to: var(--color-red-800);
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.text-transparent {
  color: transparent;
}

/* Animations */
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Size Utilities */
.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

/* Special Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Custom Components */
.card {
  background-color: transparent;
  border: 1px solid var(--color-gray-200);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.main_container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.flex-start {
  align-items: flex-start;
}

/* Before pseudo-element support */
.before\:mb-2::before {
  margin-bottom: 0.5rem;
  content: '';
}

.before\:block::before {
  display: block;
}

.before\:font-mono::before {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

.before\:text-sm::before {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.before\:text-gray-500::before {
  color: var(--color-gray-500);
}

/* After pseudo-element */
.after\:content-\[\'\'\]:after {
  content: '';
}

.after\:absolute:after {
  position: absolute;
}

.after\:top-0\.5:after {
  top: 0.125rem;
}

.after\:left-\[4px\]:after {
  left: 4px;
}

.after\:bg-white:after {
  background-color: var(--color-white);
}

.after\:border:after {
  border-width: 1px;
}

.after\:border-gray-300:after {
  border-color: var(--color-gray-300);
}

.after\:rounded-full:after {
  border-radius: 9999px;
}

.after\:h-6:after {
  height: 1.5rem;
}

.after\:w-6:after {
  width: 1.5rem;
}

.after\:transition-all:after {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Peer utilities for toggle */
.peer:checked ~ .peer-checked\:bg-purple-600 {
  background-color: var(--color-purple-600);
}

.peer:checked ~ .peer-checked\:after\:translate-x-full::after {
  transform: translateX(100%);
}

.peer:checked ~ .peer-checked\:after\:border-white::after {
  border-color: var(--color-white);
}

.peer:focus ~ .peer-focus\:outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Bracket notation for calc values */
.h-\[calc\(100%_-_32px\)\] {
  height: calc(100% - 32px);
}

.w-\[calc\(100%_-_72px\)\] {
  width: calc(100% - 72px);
}

.h-\[18px\] {
  height: 18px;
}

.max-h-50 {
  max-height: 50rem;
}

.max-w-50 {
  max-width: 50rem;
}

/* Responsive Text Sizes */
@media (min-width: 640px) {
  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .sm\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  .sm\:min-h-36 {
    min-height: 9rem;
  }
  
  .sm\:w-10\/12 {
    width: 83.333333%;
  }
  
  .sm\:justify-start {
    justify-content: flex-start;
  }
  
  .sm\:text-left {
    text-align: left;
  }
  
  .sm\:flex {
    display: flex;
  }
  
  .sm\:order-first {
    order: -9999;
  }
  
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:mt-16 {
    margin-top: 4rem;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:justify-between {
    justify-content: space-between;
  }
  
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  
  .md\:w-auto {
    width: auto;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .md\:gap-4 {
    gap: 1rem;
  }
  
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

/* Comprehensive Dark Mode Overrides */
.dark .bg-gray-950 {
  background-color: var(--color-gray-950);
}

.dark .bg-gray-800 {
  background-color: var(--color-gray-800);
}

.dark .bg-gray-900 {
  background-color: var(--color-gray-900);
}

.dark .bg-white {
  background-color: var(--color-gray-800);
}

.dark .bg-gray-50 {
  background-color: transparent;
}

.dark .bg-gray-900 {
  background-color: transparent;
}

.dark .bg-gray-50 {
  background-color: var(--color-gray-800);
}

.dark .bg-gray-100 {
  background-color: var(--color-gray-800);
}

.dark .bg-gray-200 {
  background-color: var(--color-gray-800);
}

.dark .text-white {
  color: var(--color-white);
}

.dark .text-black {
  color: var(--color-white);
}

.dark h2.text-black,
.dark h3.text-black,
.dark h4.text-black,
.dark p.text-black,
.dark span.text-black,
.dark div.text-black {
  color: var(--color-white);
}

.dark .text-gray-200 {
  color: var(--color-gray-200);
}

.dark .text-gray-300 {
  color: var(--color-gray-300);
}

.dark .text-gray-400 {
  color: var(--color-gray-400);
}

.dark .placeholder-gray-400::placeholder {
  color: var(--color-gray-500);
  opacity: 1;
}

.dark .placeholder-gray-500::placeholder {
  color: var(--color-gray-500);
  opacity: 1;
}

.dark .text-gray-700 {
  color: var(--color-gray-300);
}

.dark .text-gray-600 {
  color: var(--color-gray-400);
}

.dark .text-gray-900 {
  color: var(--color-white);
}

.dark .text-purple-400 {
  color: var(--color-purple-400);
}

.dark .text-purple-500 {
  color: var(--color-purple-500);
}

.dark .text-green-300 {
  color: var(--color-green-300);
}

.dark .border-gray-600 {
  border-color: var(--color-gray-600);
}

.dark .border-gray-700 {
  border-color: var(--color-gray-700);
}

.dark .border-gray-800 {
  border-color: var(--color-gray-800);
}

.dark .border-gray-200 {
  border-color: var(--color-gray-800);
}

.dark .border-gray-300 {
  border-color: var(--color-gray-600);
}

.dark .border-white\/\[\.08\] {
  border-color: rgba(255, 255, 255, 0.08);
}

.dark .bg-white\/\[\.02\] {
  background-color: rgba(255, 255, 255, 0.02);
}

.dark .hover\:bg-gray-700:hover {
  background-color: var(--color-gray-700);
}

.dark .hover\:text-gray-200:hover {
  color: var(--color-gray-200);
}

.dark .hover\:text-white:hover {
  color: var(--color-white);
}

.dark .group:hover .group-hover\:text-white {
  color: var(--color-white);
}

.dark .group:hover .group-hover\:border-gray-900 {
  border-color: var(--color-gray-700);
}

.dark .group:hover .group-hover\:bg-gray-900 {
  background-color: var(--color-gray-700);
}

.dark .card {
  background-color: transparent;
  border-color: var(--color-gray-700);
}

.dark .card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 10px 10px -5px rgb(0 0 0 / 0.2);
}

/* Footer styling */
footer {
  background-color: transparent;
}

.dark footer {
  background-color: var(--color-gray-950);
  background-image: linear-gradient(to top, var(--color-gray-950) 0%, var(--color-gray-950) 100%);
  position: relative;
}

.dark footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-gray-950) 100%);
  pointer-events: none;
  z-index: 0;
}

.dark footer .absolute.inset-0.bg-white {
  background-color: transparent !important;
  opacity: 0 !important;
}

/* Footer icons size fix */
.col-img {
  flex: 0 0 auto;
  max-width: 60px;
  max-height: 60px;
}

.col-img img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Footer alignment fixes */
footer .text-center.sm\:text-left {
  text-align: center;
}

@media (min-width: 640px) {
  footer .text-center.sm\:text-left {
    text-align: left;
  }
  
  footer ul li a.flex {
    justify-content: flex-start;
  }
}

footer ul li a.flex {
  justify-content: flex-start;
}

/* Stepper horizontal layout - vertical items */
@media (min-width: 1024px) {
  ul.lg\:flex-row {
    flex-direction: row;
    justify-content: space-between;
  }
  
  li.stepper-item,
  li.flex-col {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 25%;
  }
}

/* FAQ improvements */
.faq-container {
  background-color: transparent;
}

.dark .faq-container {
  background-color: var(--color-gray-950) !important;
}

.faq-item {
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-purple-600);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.dark .faq-item {
  background-color: var(--color-gray-800);
  border-color: var(--color-gray-700);
}

.dark .faq-item:hover {
  border-color: var(--color-purple-500);
  background-color: var(--color-gray-750);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.2);
}

.faq-item h2 {
  transition: color 0.2s ease;
}

.dark .faq-item h2:hover {
  color: var(--color-purple-400);
}

.faq-item svg {
  transition: transform 0.3s ease, color 0.2s ease;
}

.dark .faq-item svg {
  color: var(--color-purple-400);
}

.faq-item:hover svg {
  color: var(--color-purple-600);
}

.dark .faq-item:hover svg {
  color: var(--color-purple-300);
}

.dark .faq-item h2 {
  color: var(--color-gray-200);
}

.dark .faq-item h2 span {
  color: var(--color-gray-200);
}

.dark .faq-item .border-l-2 {
  border-left-color: var(--color-purple-500);
}

.dark .faq-item:hover .border-l-2 {
  border-left-color: var(--color-purple-400);
  border-left-width: 3px;
}

.dark .hover\:bg-gray-50:hover {
  background-color: var(--color-gray-700);
}

.dark .hover\:bg-gray-700:hover {
  background-color: var(--color-gray-700);
}

/* Utility Classes for Forms */
.group-\[\.errors\]\:border-red-600.group-\[\.errors\] {
  border-color: var(--color-red-600);
}

.group-\[\.errors\]\:focus\:ring-red-200.group-\[\.errors\]:focus {
  --tw-ring-color: rgb(254 202 202);
}

.dark .group-\[\.errors\]\:border-red-500.group-\[\.errors\] {
  border-color: #ef4444;
}

.dark .group-\[\.errors\]\:focus\:ring-red-600\/40.group-\[\.errors\]:focus {
  --tw-ring-color: rgb(220 38 38 / 0.4);
}

/* Background layers */
.bg-layers {
  position: relative;
}

.bg-scale {
  transform: scale(1);
}

@media (min-width: 768px) {
  .md\:w-\[70vw\] {
    width: 70vw;
  }
  
  .md\:h-\[8rem\] {
    height: 8rem;
  }
  
  .md\:blur-3xl {
    filter: blur(64px);
  }
}

/* Additional utilities */
.ltr\:sm\:justify-start {
  justify-content: flex-start;
}

.rtl\:sm\:justify-end {
  justify-content: flex-end;
}

.flex-1 {
  flex: 1 1 0%;
}

.dark .dark\:brightness-0 {
  filter: brightness(0);
}

.dark .dark\:invert {
  filter: invert(1);
}

.dark .dark\:placeholder-gray-300::placeholder {
  color: var(--color-gray-300);
}

/* Font heading */
.font-heading {
  font-family: inherit;
}
