/* ============================================
   QUANTUM AI SITE STYLES
   ============================================ */

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Hero Title - Main page hero heading */
.hero-title {
  font-size: 1.875rem; /* text-3xl - reduced from text-4xl */
  font-weight: 700; /* font-bold */
  letter-spacing: -0.025em; /* tracking-tight */
  color: #fff; /* text-white */
  line-height: 1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem; /* sm:text-4xl - reduced from text-5xl */
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem; /* md:text-5xl - reduced from text-6xl */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem; /* lg:text-6xl - reduced from text-7xl */
  }
}

/* Section Title - Main section headings */
.section-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  color: #111827; /* text-gray-900 */
  margin-bottom: 1.5rem; /* mb-6 */
  text-align: center; /* text-center */
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem; /* md:text-4xl */
  }
}

/* Subsection Title - H2 headings in content */
.subsection-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  color: #111827; /* text-gray-900 */
  margin-top: 2rem; /* mt-8 */
  margin-bottom: 1rem; /* mb-4 */
}

/* FAQ Question Title - Smaller size for FAQ questions */
.faq-question .subsection-title,
.faq-question h3.subsection-title {
  font-size: 1.25rem; /* text-xl - reduced for FAQ */
  font-weight: 600; /* font-semibold */
  color: #111827; /* text-gray-900 */
}

/* Content Title - H3 headings in content */
.content-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600; /* font-semibold */
  color: #111827; /* text-gray-900 */
  margin-top: 1.5rem; /* mt-6 */
  margin-bottom: 1rem; /* mb-4 */
}

/* Form Card - Hero form card container */
.form-card {
  background-color: #fff; /* bg-white */
  border-radius: 0.5rem; /* rounded-lg */
}

@media (min-width: 640px) {
  .form-card {
    margin-left: auto; /* sm:mx-auto */
    margin-right: auto;
    width: 100%; /* sm:w-full */
    max-width: 28rem; /* sm:max-w-md */
  }
}

@media (min-width: 1280px) {
  .form-card {
    margin-right: 0; /* xl:mr-0 */
  }
}

/* Form Card Content - Inner padding container */
.form-card-content {
  padding-top: 2rem; /* py-8 */
  padding-bottom: 2rem; /* py-8 */
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem; /* px-6 */
}

@media (min-width: 640px) {
  .form-card-content {
    padding-left: 2.5rem; /* sm:px-10 */
    padding-right: 2.5rem; /* sm:px-10 */
    /* py-8 stays the same */
  }
}

/* Form Header - Form title area */
.form-header {
  text-align: center; /* max-lg:text-center */
}

@media (min-width: 1024px) {
  .form-header {
    text-align: left; /* lg:text-left */
  }
}

/* Form Title - Form section headings */
.form-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  letter-spacing: -0.025em; /* tracking-tight */
}

@media (min-width: 768px) {
  .form-title {
    font-size: 1.875rem; /* md:text-3xl */
  }
}

/* Form Subtitle - Form description */
.form-subtitle {
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
  margin-top: 0.375rem; /* mt-1.5 */
}

@media (min-width: 768px) {
  .form-subtitle {
    font-size: 1rem; /* md:text-base */
    margin-top: 0.625rem; /* md:mt-2.5 */
  }
}

/* Body Text - Main content text */
.body-text {
  color: #4b5563; /* text-gray-600 */
  font-size: 1rem; /* text-base */
  line-height: 1.5rem;
}

/* Body Text Large - Larger content text */
.body-text-large {
  color: #4b5563; /* text-gray-600 */
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem;
}

/* Text Muted - Secondary/muted text */
.text-muted {
  color: #6b7280; /* text-gray-500 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  .text-muted {
    font-size: 1rem; /* md:text-base */
  }
}

/* Text White - White text */
.text-white {
  color: #fff;
}

/* Text Accent - Accent color text (emerald) */
.text-accent {
  color: #34d399; /* text-emerald-400 */
}

/* Text Accent Dark - Darker accent color */
.text-accent-dark {
  color: #10b981; /* text-emerald-600 */
}

/* Text Blue - Blue accent text */
.text-blue {
  color: #3b82f6; /* text-blue-500 */
}

/* Text Yellow - Yellow accent text */
.text-yellow {
  color: #eab308; /* text-yellow-500 */
}

/* Text Yellow for icons - Yellow color for star icons */
.ph-fill.text-yellow {
  color: #eab308;
}

/* Text Gradient - Gradient text effect */
.text-gradient {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to top right, #60a5fa, #34d399); /* from-blue-400 to-emerald-400 */
  font-weight: 600; /* font-semibold */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  text-transform: uppercase; /* uppercase */
  letter-spacing: 0.025em; /* tracking-wide */
  text-align: center; /* text-center */
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 768px) {
  .text-gradient {
    font-size: 1rem; /* md:text-base */
    line-height: 1.5rem;
  }
}

/* Font Medium - Medium font weight */
.font-medium {
  font-weight: 500;
}

/* ============================================
   CONTAINERS AND LAYOUT
   ============================================ */

/* Main Container - Primary page container */
.container-main {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  /*overflow-x: hidden; */ /* Prevent horizontal overflow */
}

/* Content Container - Content section container */
.container-content {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  /* Allow tables to scroll but prevent container overflow */
  overflow-x: visible;
}

/* On mobile, ensure container doesn't cause page overflow */
@media (max-width: 1024px) {
  .container-content {
    overflow-x: hidden; /* Prevent container from causing page scroll */
  }
}

/* Form Container - Form wrapper */
.container-form {
  max-width: 28rem; /* max-w-md */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container-form {
    width: 100%;
    max-width: 28rem; /* sm:max-w-md */
  }
}

/* Hero Container - Hero section container */
.hero-container {
  position: relative;
  overflow: hidden;
}

/* Hero Content Wrapper - Inner hero content */
.hero-content-wrapper {
  position: relative;
  padding-top: 1.5rem; /* pt-6 */
  padding-bottom: 4rem; /* pb-16 */
}

@media (min-width: 640px) {
  .hero-content-wrapper {
    padding-bottom: 6rem; /* sm:pb-24 */
  }
}

/* Hero Text Block - Hero text content area */
.hero-text-block {
  text-align: center; /* text-center */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-text-block {
    max-width: 42rem; /* md:max-w-2xl */
  }
}

@media (min-width: 1024px) {
  .hero-text-block {
    grid-column: span 6 / span 6; /* lg:col-span-6 */
    display: flex; /* lg:flex */
    align-items: center; /* lg:items-center */
    text-align: left; /* lg:text-left */
    margin-left: 0; /* lg:mx-0 */
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  .hero-text-block {
    grid-column: span 7 / span 7; /* xl:col-span-7 */
  }
}

/* Hero Form Block - Hero form area */
.hero-form-block {
  margin-top: 3rem; /* mt-12 */
}

@media (min-width: 640px) {
  .hero-form-block {
    margin-top: 6rem; /* sm:mt-24 */
  }
}

@media (min-width: 1024px) {
  .hero-form-block {
    grid-column: span 6 / span 6; /* lg:col-span-6 */
    margin-top: 0; /* lg:mt-0 */
  }
}

@media (min-width: 1280px) {
  .hero-form-block {
    grid-column: span 5 / span 5; /* xl:col-span-5 */
    margin-right: 0; /* xl:mr-0 */
  }
}

/* Content Grid - Grid layout for content */
.content-grid {
  position: relative;
  z-index: 10; /* z-10 */
}

@media (min-width: 1024px) {
  .content-grid {
    display: grid; /* lg:grid */
    grid-template-columns: repeat(12, minmax(0, 1fr)); /* lg:grid-cols-12 */
    gap: 2rem; /* lg:gap-8 */
  }
}

/* ============================================
   BACKGROUNDS AND GRADIENTS
   ============================================ */

/* Hero Background - Hero section gradient background */
.hero-background {
  background-image: linear-gradient(to top right, #111827, #1f2937); /* bg-gradient-to-tr from-gray-900 to-gray-800 */
  position: relative;
  overflow: hidden;
}

/* Section Background White - White section background */
.section-background-white {
  background-color: #fff; /* bg-white */
}

/* Section Background Gray - Light gray section background */
.section-background-gray {
  background-color: #f9fafb; /* bg-gray-50 */
}

/* Card Background - Card/box background */
.card-background {
  background-color: #fff; /* bg-white */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow */
}

/* Featured Box - Featured content box */
.featured-box {
  border-radius: 0.75rem; /* rounded-xl */
  padding: 1rem 1.5rem; /* py-4 px-6 */
  border: 1px solid rgba(255, 255, 255, 0.1); /* border border-white/10 */
  background-color: #111827; /* bg-gray-900 */
  display: inline-block;
}

@media (min-width: 768px) {
  .featured-box {
    padding: 1.5rem 2rem; /* md:py-6 md:px-8 */
  }
}

/* Featured Box Text Gradient - Text inside featured box */
.featured-box .text-gradient {
  margin-bottom: 1rem; /* mb-4 */
  display: block; /* inline-block mx-auto */
  width: 100%;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */

/* Content Section - Full width content section */
.content-section {
  padding-top: 2rem; /* py-20 */
  padding-bottom: 5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

@media (min-width: 768px) {
  .content-section {
    padding-top: 2rem; /* md:py-28 */
    padding-bottom: 7rem;
  }
}

/* Content Text - Prose content styling */
.content-text {
  color: #374151; /* prose color */
  max-width: none; /* max-w-none */
  font-size: 1.125rem; /* prose-lg */
  line-height: 1.7777778;
}

/* Automatic styling for paragraphs in content-text */
.content-text p {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  color: #4b5563; /* text-gray-600 */
  font-size: 1rem; /* text-base */
  line-height: 1.5rem;
}

/* Paragraphs with margin-bottom-medium class */
.content-text p.margin-bottom-medium {
  margin-bottom: 1.5rem; /* mb-6 */
}

/* Paragraphs with margin-top-medium class */
.content-text p.margin-top-medium {
  margin-top: 1rem; /* mt-4 */
}

/* Automatic styling for headings in content-text */
.content-text h2 {
  color: #111827;
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 0.25em;
  margin-bottom: 1em;
}

/* H2 with subsection-title class - styled as subsection */
.content-text h2.subsection-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  margin-top: 2rem; /* mt-8 */
  margin-bottom: 1rem; /* mb-4 */
}

/* H3 headings automatically get subsection-title styling */
.content-text h3,
.content-text h3.subsection-title {
  color: #111827;
  font-weight: 600; /* font-semibold */
  font-size: 1.5rem; /* text-2xl */
  margin-top: 2rem; /* mt-8 */
  margin-bottom: 1rem; /* mb-4 */
}

/* Automatic styling for lists in content-text */
.content-text ul,
.content-text ol {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.6666667em;
  color: #4b5563; /* text-gray-600 */
  font-size: 1rem; /* text-base */
  line-height: 1.5rem;
}

.content-text ul {
  list-style-type: disc;
}

.content-text ol {
  list-style-type: decimal;
}

.content-text li {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}

/* Space-y-2 for lists - vertical spacing between list items */
.content-text ul.space-y-2 > li,
.content-text ol.space-y-2 > li {
  margin-top: 0.5rem; /* space-y-2 */
}

.content-text ul.space-y-2 > li:first-child {
  margin-top: 0;
}

/* Space-y-2 for any elements */
.content-text .space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Automatic spacing for consecutive paragraphs */
.content-text p + p {
  margin-top: 1.3333333em;
}

/* Automatic spacing for paragraphs after headings */
.content-text h2 + p,
.content-text h3 + p {
  margin-top: 1em;
}

/* Automatic spacing for lists after paragraphs */
.content-text p + ul,
.content-text p + ol {
  margin-top: 1rem;
}

/* Automatic spacing for paragraphs after lists */
.content-text ul + p,
.content-text ol + p {
  margin-top: 1rem;
}

/* Text color utilities for content-text */
.content-text strong.text-white,
.content-text .text-white {
  color: #fff;
}

.content-text .text-accent {
  color: #34d399; /* text-emerald-400 */
}

.content-text .text-yellow {
  color: #eab308; /* text-yellow-500 */
}

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

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

/* Margin utilities for content-text */
.content-text .margin-bottom-medium {
  margin-bottom: 1.5rem; /* mb-6 */
}

.content-text .margin-top-medium {
  margin-top: 1rem; /* mt-4 */
}

/* Ensure images in content are responsive */
.content-text img,
.content-text picture,
.content-text picture img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Images with content-image class get special styling */
.content-text img.content-image,
.content-text .content-image {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

@media (min-width: 640px) {
  .content-text img,
  .content-text picture,
  .content-text picture img {
    max-width: 42rem; /* sm:max-w-2xl */
    width: auto;
  }
  
  .content-text img.content-image,
  .content-text .content-image {
    max-width: 42rem; /* sm:max-w-2xl */
  }
}

/* Content Image - Centered content image */
.content-image {
  display: block;
  margin: 2rem auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

@media (min-width: 640px) {
  .content-image {
    max-width: 42rem; /* sm:max-w-2xl */
  }
}

/* Table Wrapper - Scrollable container for tables */
.table-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Add subtle border to indicate scrollable area */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  /* Prevent wrapper from causing page overflow */
  box-sizing: border-box;
}

/* Content Table - Responsive table styling */
.content-text table,
.content-text .content-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0;
  display: table;
  table-layout: auto;
  overflow-wrap: break-word;
  box-sizing: border-box;
  font-size: 1rem;
}

/* Table wrapper container - creates scrollable area around tables */
@media (max-width: 1024px) {
  /* Table wrapper on tablets and smaller */
  .table-wrapper {
    min-width: 0;
    /* Ensure wrapper doesn't exceed container */
    max-width: 100%;
  }
  
  /* Tables inside wrapper can be wider than container */
  .table-wrapper table,
  .table-wrapper .content-table {
    min-width: 600px; /* Minimum width for readability */
    width: auto;
  }
}

.content-text table th,
.content-text table td,
.content-text .content-table th,
.content-text .content-table td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.content-text table thead,
.content-text .content-table thead {
  background-color: #f3f4f6;
}

.content-text table th,
.content-text .content-table th {
  font-weight: 600; /* font-semibold */
  white-space: nowrap; /* Prevent header text wrapping */
}

/* Th with font-semibold class */
.content-text table th.font-semibold,
.content-text .content-table th.font-semibold {
  font-weight: 600;
}

.content-text table tbody tr:nth-child(even),
.content-text .content-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Ensure tables don't break layout on mobile */
@media (max-width: 768px) {
  /* Ensure container doesn't overflow */
  .content-text {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll on container */
  }
  
  /* Table wrapper on mobile */
  .table-wrapper {
    min-width: 0;
    max-width: 100%;
  }
  
  /* Tables inside wrapper */
  .table-wrapper table,
  .table-wrapper .content-table {
    font-size: 0.875rem; /* text-sm */
    min-width: 550px; /* Minimum width for readability on tablets */
    width: auto;
  }
  
  .table-wrapper table th,
  .table-wrapper table td,
  .table-wrapper .content-table th,
  .table-wrapper .content-table td {
    padding: 0.625rem 0.5rem; /* Reduced padding on mobile */
    font-size: 0.875rem;
  }
  
  /* Allow text wrapping in cells on smaller screens */
  .table-wrapper table th {
    white-space: normal;
    min-width: 100px;
  }
  
  .table-wrapper table td {
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  /* Ensure container doesn't overflow on small screens */
  .content-text {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll on container */
  }
  
  /* Table wrapper on small mobile */
  .table-wrapper {
    min-width: 0;
    max-width: 100%;
  }
  
  /* Tables inside wrapper */
  .table-wrapper table,
  .table-wrapper .content-table {
    font-size: 0.875rem; /* Slightly smaller on mobile */
    min-width: 500px; /* Smaller minimum width on mobile */
    width: auto;
  }
  
  .table-wrapper table th,
  .table-wrapper table td,
  .table-wrapper .content-table th,
  .table-wrapper .content-table td {
    padding: 0.5rem 0.375rem; /* Even more reduced padding on small mobile */
    font-size: 0.875rem;
  }
  
  /* Allow text wrapping in cells on very small screens */
  .table-wrapper table th {
    white-space: normal;
    min-width: 80px;
  }
  
  .table-wrapper table td {
    min-width: 100px;
  }
}

/* ============================================
   SPACING UTILITIES
   ============================================ */

/* Section Spacing - Standard section spacing */
.section-spacing {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-spacing {
    padding-top: 7rem; /* md:py-28 */
    padding-bottom: 7rem;
  }
}

/* Section Spacing Small - Smaller section spacing */
.section-spacing-small {
  padding-top: 3rem; /* py-12 */
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-spacing-small {
    padding-top: 5rem; /* md:py-20 */
    padding-bottom: 5rem;
  }
}

/* Margin Top Large - Large top margin */
.margin-top-large {
  margin-top: 4rem; /* mt-16 */
}

/* Margin Bottom Medium - Medium bottom margin */
.margin-bottom-medium {
  margin-bottom: 1.5rem; /* mb-6 */
}

/* Margin Bottom Large - Large bottom margin */
.margin-bottom-large {
  margin-bottom: 2rem; /* mb-8 */
}

/* Margin Top Medium - Medium top margin */
.margin-top-medium {
  margin-top: 1rem; /* mt-4 */
}

/* ============================================
   FLEXBOX AND ALIGNMENT
   ============================================ */

/* Flex Center - Flex with center alignment */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flex Between - Flex with space between */
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Flex Column - Flex column direction */
.flex-column {
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .flex-column {
    flex-direction: row; /* sm:flex-row */
  }
}

/* Flex Wrap - Flex with wrapping */
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem; /* gap-6 */
  justify-content: center;
}

/* Text Center - Center text alignment */
.text-center {
  text-align: center;
}

/* Text Left - Left text alignment */
.text-left {
  text-align: left;
}

@media (min-width: 1024px) {
  .text-left-lg {
    text-align: left; /* lg:text-left */
  }
}

/* ============================================
   RATINGS AND BADGES
   ============================================ */

/* Rating Stars - Star rating display */
.rating-stars {
  display: flex;
  align-items: center;
  font-size: 1.125rem; /* text-lg */
  gap: 0.125rem; /* gap-0.5 */
}

@media (min-width: 768px) {
  .rating-stars {
    font-size: 1.25rem; /* md:text-xl */
    gap: 0.25rem; /* md:gap-1 */
  }
}

/* Rating Text - Rating description text */
.rating-text {
  margin-top: 0.75rem; /* max-sm:mt-3 */
  font-size: 0.75rem; /* text-xs */
  color: #e5e7eb; /* text-gray-200 */
}

@media (min-width: 640px) {
  .rating-text {
    margin-top: 0;
    margin-left: 1rem; /* sm:ml-4 */
    padding-left: 1rem; /* sm:pl-4 */
    border-left: 1px solid #374151; /* sm:border-l border-gray-700 */
  }
}

@media (min-width: 768px) {
  .rating-text {
    font-size: 0.875rem; /* md:text-sm */
  }
}

/* ============================================
   LOGO GRID
   ============================================ */

/* Logo Grid - Grid for partner logos */
.logo-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem; /* gap-6 */
  justify-content: center;
}

/* Logo Item - Individual logo in grid */
.logo-item {
  height: 2.5rem; /* h-10 */
  width: auto;
}

@media (min-width: 768px) {
  .logo-item {
    height: 3rem; /* md:h-12 */
  }
}

/* ============================================
   CRYPTO SLIDER
   ============================================ */

/* Crypto Slider - Cryptocurrency logos slider */
.crypto-slider {
  padding: 1.5rem 0; /* py-6 */
  background-color: #fff; /* bg-white */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow */
  position: relative;
  z-index: 20; /* z-20 */
}

@media (min-width: 768px) {
  .crypto-slider {
    padding: 1.75rem 0; /* md:py-7 */
  }
}

/* Crypto Slide - Individual slide item */
.crypto-slide {
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .crypto-slide {
    padding-left: 2.5rem; /* md:px-10 */
    padding-right: 2.5rem;
  }
}

/* Crypto Logo - Cryptocurrency logo image */
.crypto-logo {
  height: 2rem; /* h-8 */
  width: auto;
  filter: grayscale(100%); /* grayscale */
  opacity: 0.5; /* opacity-50 */
}

@media (min-width: 768px) {
  .crypto-logo {
    height: 2.5rem; /* md:h-10 */
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

/* Testimonials Section - Testimonials container */
.testimonials-section {
  position: relative;
  padding-top: 5rem; /* pt-20 */
  padding-bottom: 6rem; /* pb-24 */
  overflow: hidden;
  background-color: #f9fafb; /* bg-gray-50 */
  z-index: 10; /* z-10 */
}

@media (min-width: 768px) {
  .testimonials-section {
    padding-top: 7rem; /* md:pt-28 */
    padding-bottom: 8rem; /* md:pb-32 */
  }
}

/* Testimonials Label - Section label */
.testimonials-label {
  margin-bottom: 1.25rem; /* mb-5 */
  font-size: 0.875rem; /* text-sm */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to top right, #3b82f6, #10b981); /* from-blue-500 to-emerald-500 */
  font-weight: 600; /* font-semibold */
  text-align: center;
  text-transform: uppercase; /* uppercase */
  letter-spacing: 0.025em; /* tracking-wide */
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonials-label {
    font-size: 1rem; /* md:text-base */
  }
}

/* Testimonials Title - Section title */
.testimonials-title {
  margin-bottom: 2.5rem; /* mb-10 */
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  text-align: center;
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
  color: #111827; /* text-gray-900 */
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.25rem; /* md:text-4xl */
    margin-bottom: 5rem; /* md:mb-20 */
  }
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 3rem; /* lg:text-5xl */
  }
}

/* Testimonials Grid - Grid for testimonials */
.testimonials-grid {
  margin-top: 2.5rem; /* mt-10 */
  display: grid;
  grid-template-columns: 1fr; /* grid-cols-1 */
  grid-template-rows: 1fr; /* grid-rows-1 */
  gap: 1.5rem; /* gap-6 */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem; /* text-base */
  color: #111827; /* text-gray-900 */
  text-align: left; /* text-left */
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* sm:grid-cols-2 */
    gap: 2rem; /* sm:gap-8 */
  }
}

@media (min-width: 768px) {
  .testimonials-grid {
    margin-top: 5rem; /* md:mt-20 */
  }
}

@media (min-width: 1280px) {
  .testimonials-grid {
    max-width: none; /* xl:max-w-none */
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* xl:grid-cols-4 */
    grid-auto-flow: column; /* xl:grid-flow-col - fill by columns */
    margin-left: 0; /* xl:mx-0 */
    margin-right: 0;
  }
}

/* Testimonials Group - Wrapper groups that become "contents" on xl */
.testimonials-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
}

@media (min-width: 640px) {
  .testimonials-group {
    gap: 2rem; /* sm:space-y-8 */
  }
}

@media (min-width: 1280px) {
  .testimonials-group {
    display: contents; /* xl:contents - makes element transparent to grid */
    gap: 0; /* xl:space-y-0 */
  }
}

/* Testimonials Group Inner - Inner wrapper for spacing */
.testimonials-group-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
}

@media (min-width: 640px) {
  .testimonials-group-inner {
    gap: 2rem; /* sm:space-y-8 */
  }
}

@media (min-width: 1280px) {
  .testimonials-group-inner {
    gap: 0; /* xl:space-y-0 */
  }
}

/* Testimonials Group Row Span 2 - Spans 2 rows on xl */
@media (min-width: 1280px) {
  .testimonials-group-row-span-2 {
    grid-row: span 2 / span 2; /* xl:row-span-2 */
  }
}

/* Testimonials Group Row Start 1 - Starts at row 1 on xl */
@media (min-width: 1280px) {
  .testimonials-group-row-start-1 {
    grid-row-start: 1; /* xl:row-start-1 */
  }
}

/* Testimonial Card - Individual testimonial card */
.testimonial-card {
  border-radius: 0.75rem; /* rounded-xl */
  background-color: #fff; /* bg-white */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow */
  border: 1px solid rgba(17, 24, 39, 0.05); /* ring-1 ring-gray-900/5 */
  text-align: left; /* text-left */
}

/* Testimonial Card Large - Large featured testimonial */
.testimonial-card-large {
  display: block; /* block */
  padding: 2rem; /* p-8 */
}

@media (min-width: 640px) {
  .testimonial-card-large {
    grid-column: span 2 / span 2; /* sm:col-span-2 */
    padding: 3rem; /* sm:p-12 */
  }
}

@media (min-width: 1280px) {
  .testimonial-card-large {
    grid-column-start: 2; /* xl:col-start-2 */
    grid-row-end: 1; /* xl:row-end-1 - ends at row 1, so it's in the first row */
  }
}

/* Testimonial Card Small - Small testimonial cards */
.testimonial-card-small {
  padding: 1.5rem; /* p-6 */
}

/* Testimonial Quote - Testimonial text */
.testimonial-quote {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600; /* font-semibold */
  line-height: 2rem; /* leading-8 */
  color: #111827; /* text-gray-900 */
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.5rem; /* md:text-2xl */
  }
}

/* Testimonial Quote Small - Smaller testimonial text */
.testimonial-quote-small {
  color: #111827; /* text-gray-900 */
  font-size: 1rem; /* text-base */
}

@media (min-width: 768px) {
  .testimonial-quote-small {
    font-size: 1.125rem; /* md:text-lg */
  }
}

/* Testimonial Author - Author info */
.testimonial-author {
  margin-top: 1.5rem; /* mt-6 */
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-x-3 */
}

/* Testimonial Author Info - Author info container */
.testimonial-author-info {
  flex: 1; /* flex-auto */
}

/* Testimonial Avatar - Author avatar icon */
.testimonial-avatar {
  font-size: 2.25rem; /* text-4xl */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to top right, #3b82f6, #10b981); /* from-blue-500 to-emerald-500 */
  display: inline-block;
  flex: none; /* flex-none */
}

/* Testimonial Name - Author name */
.testimonial-name {
  font-weight: 600; /* font-semibold */
}

/* ============================================
   FAQ SECTION
   ============================================ */

/* FAQ Section - FAQ container */
.faq-section {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
  background-color: #fff; /* bg-white */
}

@media (min-width: 768px) {
  .faq-section {
    padding-top: 7rem; /* md:py-28 */
    padding-bottom: 7rem;
  }
}

/* FAQ styles are already defined in main-styles.css, keeping them as is */

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

/* Decorative Gradient - Background decorative gradient */
.decorative-gradient {
  position: absolute;
  inset: 0;
  top: 50%;
  z-index: -10; /* -z-10 */
  transform: translateY(-50%);
  overflow: hidden;
  opacity: 0.15;
  filter: blur(3rem); /* blur-3xl */
}

.decorative-gradient::before {
  content: '';
  position: absolute;
  margin-left: max(50%, 38rem); /* ml-[max(50%,38rem)] */
  aspect-ratio: 1313/771;
  width: 82.0625rem;
  background-image: linear-gradient(to top right, #3b82f6, #10b981); /* from-blue-500 to-emerald-500 */
  clip-path: polygon(
    74.1% 44.1%,
    100% 61.6%,
    97.5% 26.9%,
    85.5% 0.1%,
    80.7% 2%,
    72.5% 32.5%,
    60.2% 62.4%,
    52.4% 68.1%,
    47.5% 58.3%,
    45.2% 34.5%,
    27.5% 76.7%,
    0.1% 64.9%,
    17.9% 100%,
    27.6% 76.8%,
    76.1% 97.7%,
    74.1% 44.1%
  );
}

/* Decorative Gradient Top - Top decorative gradient */
.decorative-gradient-top {
  position: absolute;
  inset: 0;
  top: 0;
  z-index: -10; /* -z-10 */
  display: flex;
  transform: translateY(0);
  overflow: hidden;
  padding-top: 8rem; /* pt-32 */
  opacity: 0.15;
  filter: blur(3rem); /* blur-3xl */
}

@media (min-width: 640px) {
  .decorative-gradient-top {
    padding-top: 10rem; /* sm:pt-40 */
  }
}

@media (min-width: 1280px) {
  .decorative-gradient-top {
    justify-content: flex-end; /* xl:justify-end */
  }
}

.decorative-gradient-top::before {
  content: '';
  position: absolute;
  margin-left: -22rem; /* ml-[-22rem] */
  aspect-ratio: 1313/771;
  width: 82.0625rem;
  flex: none;
  transform-origin: top right;
  transform: rotate(30deg);
  background-image: linear-gradient(to top right, #3b82f6, #10b981); /* from-blue-500 to-emerald-500 */
}

@media (min-width: 1280px) {
  .decorative-gradient-top::before {
    margin-left: 0; /* xl:ml-0 */
    margin-right: calc(50% - 12rem); /* xl:mr-[calc(50%-12rem)] */
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Relative Position */
.relative {
  position: relative;
}

/* Absolute Position */
.absolute {
  position: absolute;
}

/* Z Index Layers */
.z-0 {
  z-index: 0;
}

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

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

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

/* Pointer Events None */
.pointer-events-none {
  pointer-events: none;
}

/* Inline Block */
.inline-block {
  display: inline-block;
}

/* Width Full */
.width-full {
  width: 100%;
}

/* Width Auto */
.width-auto {
  width: auto;
}

/* Height Auto */
.height-auto {
  height: auto;
}

/* Max Width None */
.max-width-none {
  max-width: none;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

/* Hide on mobile, show on desktop */
@media (max-width: 1023px) {
  .hide-mobile {
    display: none;
  }
}

/* Show on mobile, hide on desktop */
@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

/* Center on mobile */
@media (max-width: 1023px) {
  .center-mobile {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   FORM SPECIFIC STYLES
   ============================================ */

/* Form styles are defined in TYPOGRAPHY section above */
/* Form Wrapper - Form container (spacing after header) */
.form-wrapper {
  margin-top: 1rem; /* mt-4 */
}

/* ============================================
   HERO IMAGE
   ============================================ */

/* Hero Background Image - Decorative background image */
.hero-background-image {
  position: absolute;
  width: 850px;
  height: auto;
  bottom: -6rem; /* -bottom-24 */
  right: -16rem; /* -right-64 */
  z-index: 0; /* z-0 */
  pointer-events: none;
}

/* ============================================
   DISCLAIMER TEXT
   ============================================ */

/* Disclaimer Text - Small disclaimer text */
.disclaimer-text {
  margin-top: 1.5rem; /* mt-6 */
  color: #6b7280; /* text-gray-500 */
  text-align: center; /* text-center */
  font-size: 0.75rem; /* text-xs */
}

@media (min-width: 768px) {
  .disclaimer-text {
    margin-top: 2.5rem; /* md:mt-10 */
    font-size: 0.875rem; /* md:text-sm */
  }
}

@media (min-width: 1024px) {
  .disclaimer-text {
    text-align: left; /* lg:text-left */
  }
}

/* ============================================
   SPACE UTILITIES
   ============================================ */

/* Space Y - Vertical spacing between children */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .space-y-0-sm > * + * {
    margin-top: 0; /* sm:space-y-0 */
  }
  
  .space-y-8-sm > * + * {
    margin-top: 2rem; /* sm:space-y-8 */
  }
}

/* ============================================
   LIST STYLES
   ============================================ */

/* List Disc - Disc list style */
.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem; /* pl-6 */
}

/* ============================================
   ADDITIONAL RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Max Width XL - Extra large max width */
.max-width-xl {
  max-width: 36rem; /* max-w-xl */
}

@media (min-width: 1024px) {
  .max-width-xl-lg {
    margin-left: auto; /* lg:mx-auto */
    margin-right: auto;
  }
}

/* Margin Top Adjustments */
.margin-top-small {
  margin-top: 0.75rem; /* mt-3 */
}

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

.margin-top-base {
  margin-top: 1.25rem; /* mt-5 */
}

.margin-top-large-base {
  margin-top: 1.75rem; /* mt-7 */
}

@media (min-width: 768px) {
  .margin-top-large-base {
    margin-top: 2.5rem; /* md:mt-10 */
  }
}

/* Width Adjustments */
.width-full-responsive {
  width: 100%; /* w-full */
}

@media (min-width: 640px) {
  .width-full-responsive {
    margin-left: auto; /* sm:mx-auto */
    margin-right: auto;
    max-width: 32rem; /* sm:max-w-lg */
  }
}

@media (min-width: 1024px) {
  .width-full-responsive {
    margin-left: 0; /* lg:ml-0 */
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
  position: relative;
  z-index: 2;
  background: #67476e;
  padding-block: 40px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 30px;
  z-index: 2;
}

.footer__line {
  background-color: rgba(255, 255, 255, 0.5);
  height: 1px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  width: 64px;
  height: 64.774px;
}

.footer__socials {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.footer__description {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem; /* 142.857% */
  margin-bottom: 50px;
}

.footer__list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.footer__list-link a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.footer__circle {
  position: absolute;
  top: -393px;
  left: -630px;
  width: 1000px;
  height: 1000px;
}

@media (max-width: 700px) {
  .footer__container {
    padding-block: 40px;
  }

  .footer__logo {
    width: 43.179px;
    height: 43.553px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
  }

  .footer__socials-icon {
    width: 36px;
    height: 36px;
  }

  .footer__description {
    margin-bottom: 30px;
  }

  .footer__list {
    column-gap: 15px;
    justify-content: center;
  }
}

/* ============================================
   CHECKBOX SVG STYLES
   ============================================ */

.checkbox-svg {
  margin: 10px 0 10px;
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
}

.checkbox-svg label.checked-svg {
  cursor: pointer;
  position: relative;
  margin: 0;
  width: 25px;
  height: 25px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  min-height: auto;
  padding-left: initial;
}

.checked-svg svg {
  background-color: #fffcf3;
  border: 2px solid #000000;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  fill: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.2s ease,
    stroke-linecap 0.2s ease,
    stroke-linejoin 0.2s ease;
}

.checked-svg svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.checked-svg svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.checked-svg:hover:before {
  opacity: 1;
}

.checked-svg:hover svg {
  stroke: #000000;
}

input[id*="cbx"]:checked + .checked-svg svg {
  stroke: #000000;
}

input[id*="cbx"]:checked + .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

input[id*="cbx"]:checked + .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

.privacy-checkbox p {
  color: var(--Black, #000);
  font-size: 13px !important;
  line-height: 14px !important;
  margin-top: -2px !important;
}

.checkbox-svg p {
  margin: 0;
}

/* ============================================
   CTA SECTION (Call to Action)
   ============================================ */

/* CTA Section - Call to action section */
.cta-section {
  background-color: #fff; /* bg-white */
  padding-bottom: 6rem; /* pb-24 */
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .cta-section {
    padding-bottom: 8rem; /* sm:pb-32 */
  }
}

/* CTA Container - Container for CTA card */
.cta-container {
  max-width: 70rem; /* max-w-7xl */
  margin-left: auto; /* mx-auto */
  margin-right: auto;
}

/* CTA Card - Main CTA card with gradient background */
.cta-card {
  position: relative; /* relative */
  isolation: isolate; /* isolate */
  overflow: hidden; /* overflow-hidden */
  background-image: linear-gradient(to top right, #111827, #1f2937); /* bg-gradient-to-tr from-gray-900 to-gray-800 */
  padding: 6rem 1.5rem; /* px-6 py-24 */
  text-align: center; /* text-center */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
  border-radius: 1.5rem; /* rounded-3xl */
}

@media (min-width: 640px) {
  .cta-card {
    padding-left: 4rem; /* sm:px-16 */
    padding-right: 4rem;
  }
}

/* CTA Title - CTA heading */
.cta-title {
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto; /* mx-auto */
  margin-right: auto;
  font-weight: 700; /* font-bold */
  color: #fff; /* text-white */
  font-size: 1.75rem; /* text-3xl */
  line-height: 2.25rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2rem; /* md:text-4xl */
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 2.5rem; /* lg:text-5xl */
    line-height: 1;
  }
}

/* CTA Description - CTA description text */
.cta-description {
  max-width: 36rem; /* max-w-xl */
  margin-left: auto; /* mx-auto */
  margin-right: auto;
  margin-top: 1.5rem; /* mt-6 */
  font-size: 1.125rem; /* text-lg */
  line-height: 2rem; /* leading-8 */
  color: #d1d5db; /* text-gray-300 */
}

/* CTA Button Wrapper - Container for CTA button */
.cta-button-wrapper {
  margin-top: 2.5rem; /* mt-10 */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  gap: 1.5rem; /* gap-x-6 */
}

/* CTA Button - Call to action button */
.cta-button {
  display: flex; /* flex */
  justify-content: center; /* justify-center */
  align-items: center; /* items-center */
  gap: 0.625rem; /* gap-2.5 */
  border-radius: 0.375rem; /* rounded-md */
  border: 1px solid transparent; /* border border-transparent */
  background-color: #10b981; /* bg-emerald-600 */
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  font-size: 1rem; /* text-base */
  font-weight: 500; /* font-medium */
  color: #fff; /* text-white */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #059669; /* hover:bg-emerald-700 */
}

.cta-button:focus {
  outline: none; /* focus:outline-none */
  box-shadow: 0 0 0 2px #10b981, 0 0 0 4px rgba(16, 185, 129, 0.2); /* focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2 */
}

@media (min-width: 768px) {
  .cta-button {
    gap: 0.75rem; /* md:gap-3 */
    padding: 1rem 2.5rem; /* md:px-10 md:py-4 */
    font-size: 1.125rem; /* md:text-lg */
  }
}

/* CTA Background Gradient - Decorative SVG gradient */
.cta-background-gradient {
  position: absolute; /* absolute */
  left: 50%; /* left-1/2 */
  top: auto; /* top auto to allow bottom positioning */
  bottom: -32rem; /* Position so gradient peeks from bottom edge */
  z-index: -10; /* -z-10 */
  height: 64rem; /* h-[64rem] */
  width: 64rem; /* w-[64rem] */
  transform: translateX(-50%); /* -translate-x-1/2 */
  -webkit-mask-image: radial-gradient(closest-side, white, transparent); /* [mask-image:radial-gradient(closest-side,white,transparent)] */
  mask-image: radial-gradient(closest-side, white, transparent); /* [mask-image:radial-gradient(closest-side,white,transparent)] */
  pointer-events: none; /* pointer-events-none */
}

