.elementor-80 .elementor-element.elementor-element-1d47f2e{--display:flex;}.elementor-80 .elementor-element.elementor-element-1b2fbec{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-1b2fbec *//* CSS Variables */
:root {
  --background: 0 0% 7%;
  --foreground: 0 0% 98%;
  --card: 0 0% 10%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 10%;
  --popover-foreground: 0 0% 98%;
  --primary: 217 91% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 15%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --accent: 217 91% 60%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 20%;
  --input: 0 0% 15%;
  --ring: 217 91% 60%;
  --radius: 0.5rem;
  --hero-overlay: 0 0% 5%;
  --section-dark: 0 0% 7%;
  --section-light: 0 0% 10%;
}

/* Base Styles */
* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  margin: 0;
}

/* Utility Classes */
.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.header .section-padding {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .header .section-padding {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.container-max {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-max {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-max {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-accent {
  color: hsl(var(--accent));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-muted-30 {
  background-color: hsl(var(--muted) / 0.3);
}

.border-border {
  border-color: hsl(var(--border));
}

.border-y {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.w-full {
  width: 100%;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mb-12 {
  margin-bottom: 3rem;
}

.text-lg {
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.5);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.header .section-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.logo-icon {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header .logo-icon {
  height: 80px;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-cta {
    display: flex;
  }
}

.nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: hsl(var(--foreground));
  }
}

.mobile-menu-btn {
  display: flex;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0 0 1rem 0;
  gap: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav li {
  margin: 0;
}

/* Buttons */
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

a.btn-primary,
a.btn-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.35);
  animation: btn-pulse 3s ease-in-out infinite;
  isolation: isolate;
  font-size: 0.75rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn-primary {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(180deg, hsl(var(--primary)) 0%, hsl(217 91% 50%) 100%);
  z-index: -1;
  transition: all 500ms ease-in-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::after {
    top: 0;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.5);
    animation: none;
  }
}

/* Better touch feedback for mobile */
.btn-primary:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Touch devices - show effect on tap */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:active::after {
    top: 0;
  }
  
  .btn-primary:active {
    box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.4);
  }
}

.btn-large {
  font-size: 1.125rem;
  padding: 1.5rem 2.5rem;
}

.btn-outline {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  font-size: 0.9375rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-outline::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(180deg, hsl(var(--primary)) 0%, hsl(217 91% 50%) 100%);
  z-index: -1;
  transition: all 500ms ease-in-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover::after {
    top: 0;
  }

  .btn-outline:hover {
    transform: scale(1.05);
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.3);
  }
}

/* Better touch feedback for mobile */
.btn-outline:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* Touch devices - show effect on tap */
@media (hover: none) and (pointer: coarse) {
  .btn-outline:active::after {
    top: 0;
  }
  
  .btn-outline:active {
    border-color: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.3);
  }
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.35);
  }
  50% {
    box-shadow: 0 4px 18px 0 hsl(var(--primary) / 0.45);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

.hero-subheadline {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .hero-subheadline {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subheadline {
    margin-left: 0;
  }
}

.hero-carousel-container {
  position: relative;
}

.hero-carousel {
  position: relative;
  min-height: 200px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .carousel-indicators {
    justify-content: flex-start;
  }
}

.carousel-indicator {
  height: 8px;
  border-radius: 9999px;
  border: none;
  background-color: hsl(var(--muted-foreground) / 0.4);
  cursor: pointer;
  transition: all 0.3s;
  width: 8px;
}

.carousel-indicator.active {
  background-color: hsl(var(--primary));
  width: 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* Hero Form */
.hero-form-container {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-form-card {
  background-color: hsl(var(--card) / 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.3);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-form-card {
    padding: 2rem;
  }
}

.hero-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0 1rem;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 640px) {
  .form-input {
    font-size: 1rem;
  }
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Logo Carousel */
.logo-carousel-section {
  padding: 3rem 0;
  background-color: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
}

.logo-carousel-label {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.logo-carousel-wrapper {
  position: relative;
}

.logo-carousel-gradient-left,
.logo-carousel-gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.logo-carousel-gradient-left {
  left: 0;
  background: linear-gradient(to right, hsl(var(--secondary)), transparent);
}

.logo-carousel-gradient-right {
  right: 0;
  background: linear-gradient(to left, hsl(var(--secondary)), transparent);
}

.logo-carousel {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.logo-item {
  flex-shrink: 0;
  margin: 0 1.5rem;
}

@media (min-width: 768px) {
  .logo-item {
    margin: 0 2.5rem;
  }
}

.logo-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 3.5rem;
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--card) / 0.6);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
  cursor: default;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .logo-card:hover {
    border-color: hsl(var(--primary) / 0.4);
    background-color: hsl(var(--card) / 0.8);
  }

  .logo-card:hover .logo-icon-small {
    transform: scale(1.1);
  }

  .logo-card:hover span {
    color: hsl(var(--foreground));
  }
}

.logo-icon-small {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary));
  transition: transform 0.3s;
}

.logo-card span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  white-space: nowrap;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .logo-card span {
    font-size: 1.125rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Image Flow Section */
.image-flow-section {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  background-color: hsl(var(--background));
}

@media (min-width: 768px) {
  .image-flow-section {
    padding: 3rem 0;
  }
}

.image-flow-section .container-max {
  position: relative;
  overflow: hidden;
}

.image-flow-gradient-left,
.image-flow-gradient-right {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  background: linear-gradient(to right, hsl(var(--background)), transparent);
}

.image-flow-gradient-right {
  left: auto;
  right: 0;
  background: linear-gradient(to left, hsl(var(--background)), transparent);
}

@media (min-width: 768px) {
  .image-flow-gradient-left,
  .image-flow-gradient-right {
    width: 8rem;
  }
}

.image-flow-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .image-flow-wrapper {
    padding: 4rem 0;
  }
}

.image-flow-container {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: scroll 40s linear infinite;
  align-items: center;
  will-change: transform;
}

@media (min-width: 768px) {
  .image-flow-container {
    gap: 1.5rem;
  }
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .image-flow-container:hover {
    animation-play-state: paused;
  }

  .image-flow-item:hover img {
    transform: scale(1.05);
  }
}

.image-flow-item {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 16/10;
  border-radius: 0.5rem;
  overflow: hidden;
  will-change: transform;
}

@media (min-width: 768px) {
  .image-flow-item {
    width: 400px;
  }
}

@media (min-width: 1024px) {
  .image-flow-item {
    width: 500px;
  }
}

.image-flow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.5s ease-out, border-color 0.5s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  display: block;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(to top, hsl(var(--card)), hsl(var(--card) / 0.8), hsl(var(--card) / 0.4));
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .benefit-card:hover .benefit-card-video {
    opacity: 1;
    transform: scale(1);
  }

  .benefit-card:hover::after {
    opacity: 1;
  }

  .benefit-card:hover {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 0 30px hsl(var(--primary) / 0.3), 0 0 60px hsl(var(--primary) / 0.15), inset 0 1px 0 hsl(var(--primary) / 0.2);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .benefit-card:active::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .benefit-card:active .benefit-card-video {
    opacity: 1;
    transform: scale(1);
  }

  .benefit-card:active::after {
    opacity: 1;
  }

  .benefit-card:active {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 0 30px hsl(var(--primary) / 0.3), 0 0 60px hsl(var(--primary) / 0.15), inset 0 1px 0 hsl(var(--primary) / 0.2);
    transform: scale(0.98);
  }
  
  .benefit-card.animate-in:active {
    transform: translateY(0) scale(0.98);
  }
}

.benefit-image-small {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.benefit-image-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, hsl(var(--primary) / 0.2), transparent);
  pointer-events: none;
}

.benefit-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover .benefit-image-small img {
    transform: scale(1.05);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .benefit-card:active .benefit-image-small img {
    transform: scale(1.05);
  }
}

.benefit-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.benefit-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}

.benefit-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.benefit-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.benefit-link svg {
  transition: transform 0.4s ease-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover .benefit-link {
    opacity: 1;
    transform: translateX(6px);
  }

  .benefit-card:hover .benefit-link svg {
    transform: translateX(2px);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .benefit-card:active .benefit-link {
    opacity: 1;
    transform: translateX(6px);
  }

  .benefit-card:active .benefit-link svg {
    transform: translateX(2px);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.9375rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .section-description {
    font-size: 1rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.125rem;
  }
}

/* Workflow Diagram */
.workflow-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .workflow-diagram {
    gap: 0.75rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .workflow-diagram {
    gap: 1rem;
    overflow-x: visible;
  }
}

.workflow-step {
  background-color: #2563eb;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .workflow-step:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
}

/* Better touch feedback for mobile */
.workflow-step:active {
  background-color: #3b82f6;
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.workflow-step:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .workflow-step {
    padding: 0.875rem 1.5rem;
  }
}

.workflow-step span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #ffffff;
  white-space: nowrap;
  display: block;
}

@media (min-width: 640px) {
  .workflow-step span {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .workflow-step span {
    font-size: 1rem;
  }
}

.workflow-arrow {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .workflow-arrow {
    width: 24px;
    height: 24px;
  }
}

/* How It Works */
.how-it-works-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .how-it-works-steps {
    padding: 0;
    overflow-x: visible;
  }
}

@media (min-width: 768px) {
  .how-it-works-steps {
    flex-direction: row;
    gap: 1rem;
  }
}

.how-it-works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--primary) / 0.15);
  margin-bottom: 1rem;
}

.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.how-it-works-step span {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  max-width: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .how-it-works-step span {
    font-size: 0.875rem;
    max-width: 120px;
    padding: 0;
  }
}

.how-it-works-connector {
  display: none;
}

@media (min-width: 768px) {
  .how-it-works-connector {
    display: block;
    position: absolute;
    top: 1.5rem;
    left: 100%;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: hsl(var(--border));
  }
}

/* Why Buy Section */
.why-buy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .why-buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-buy-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon.accent {
  background-color: hsl(var(--accent));
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary-foreground));
}

.check-icon.accent svg {
  color: hsl(var(--accent-foreground));
}

.why-buy-item span {
  color: hsl(var(--foreground));
  font-size: 1.125rem;
}

/* Customer Experience */
.customer-experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .customer-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.customer-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.customer-benefit-item span {
  color: hsl(var(--foreground));
  font-size: 1.125rem;
}

.customer-experience-image {
  order: -1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .customer-experience-image {
    order: 0;
    justify-content: flex-end;
    align-items: center;
  }
}

.customer-experience-video-wrapper {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 42px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: hsl(var(--background));
  aspect-ratio: 16 / 9;
  align-self: start;
}

.customer-experience-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s;
  position: relative;
  filter: blur(0);
}

/* Blur effect at video outline - 0.5cm (approximately 18.9px) */
.customer-experience-video-wrapper::before {
  content: '';
  position: absolute;
  inset: -18.9px;
  border-radius: 1rem;
  background: inherit;
  filter: blur(18.9px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.customer-experience-video-wrapper::after {
  content: '';
  position: absolute;
  inset: -18.9px;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  filter: blur(18.9px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.customer-experience-video img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .customer-experience-video-wrapper:hover .customer-experience-video {
    transform: scale(1.02);
  }
}

/* Testimonials */
.testimonials-container {
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 0 0.5rem;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 2rem;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 4rem;
  height: 4rem;
  color: hsl(var(--primary) / 0.1);
}

.testimonial-content {
  position: relative;
  z-index: 10;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.testimonial-star {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-star.filled {
  color: #fbbf24;
  fill: #fbbf24;
}

.testimonial-star.empty {
  color: hsl(var(--muted-foreground) / 0.3);
}

.testimonial-quote {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .testimonial-quote {
    font-size: 1.25rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-nav-btn {
  pointer-events: auto;
  border-radius: 9999px;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border));
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .testimonial-nav-btn:hover {
    background-color: hsl(var(--background));
  }
}

/* Better touch feedback for mobile */
.testimonial-nav-btn:active {
  background-color: hsl(var(--background));
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  border: none;
  background-color: hsl(var(--muted-foreground) / 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .testimonial-dot:hover {
    background-color: hsl(var(--muted-foreground) / 0.5);
  }
}

.testimonial-dot.active {
  background-color: hsl(var(--primary));
  width: 2rem;
}

/* Final CTA */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 8rem 0;
  }
}

.final-cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--background) / 0.85);
}

.final-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.final-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--background));
  padding: 2rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer .section-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-links {
    gap: 1.5rem;
  }
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .footer-link:hover {
    color: hsl(var(--foreground));
  }
}

.footer-copyright {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefit card animation classes */
.benefit-card.animate-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease-out, border-color 0.5s ease-out !important;
}

/* Gallery page styles */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.aspect-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.aspect-video img,
.aspect-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-video {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0;
  pointer-events: none;
}

.gallery-video img {
  display: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .aspect-video img,
.gallery-item .aspect-video video {
  transition: transform 0.5s ease-out;
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, hsl(var(--background) / 0.9), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  pointer-events: none;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    border-color: hsl(var(--primary) / 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  }

  .gallery-item:hover .aspect-video img,
  .gallery-item:hover .aspect-video video {
    transform: scale(1.05);
  }

  .gallery-item:hover figcaption {
    opacity: 1;
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .gallery-item:active {
    border-color: hsl(var(--primary) / 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  }
  
  .gallery-item.animate-in:active {
    transform: translateY(-2px);
  }

  .gallery-item:active .aspect-video img,
  .gallery-item:active .aspect-video video {
    transform: scale(1.05);
  }

  .gallery-item:active figcaption {
    opacity: 1;
  }
}

.gallery-category {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.gallery-alt {
  color: hsl(var(--foreground));
  font-weight: 500;
  margin: 0;
}

/* Client Area page styles */
.client-area-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-area-container {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.6s ease-out;
}

.client-area-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .client-area-title {
    font-size: 2.25rem;
  }
}

.client-area-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
  .client-area-card {
    padding: 2rem;
  }
}

.client-area-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-area-input {
  width: 100%;
  height: 3rem;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0 0.75rem;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: all 0.2s ease-out;
}

@media (min-width: 768px) {
  .client-area-input {
    font-size: 1rem;
  }
}

.client-area-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.client-area-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.client-area-button {
  height: 3rem;
  border-radius: 9999px;
}

.client-area-link {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: text-decoration 0.2s ease-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .client-area-link:hover {
    text-decoration: underline;
  }
}

.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;
}

/* Customer experience video - styles moved to .customer-experience-video-wrapper above */

/* Blog Page Styles */
.category-btn {
  padding: 0.5rem 1rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  ring-offset-color: hsl(var(--background));
}

.category-btn:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--input));
}

.category-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.category-btn.active:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.blog-featured-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.blog-featured-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.blog-featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .blog-featured-link {
    display: flex;
  }
}

.blog-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .blog-featured-content {
    width: 50%;
    padding: 3rem;
  }
}

.blog-featured-image {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-featured-image {
    width: 50%;
    min-height: 350px;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.blog-featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .blog-featured-title {
    font-size: 1.875rem;
  }
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.05);
  }

  .blog-featured-card:hover .blog-featured-title {
    color: hsl(var(--primary));
  }
}

.blog-featured-excerpt {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.blog-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: border-color 0.3s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.blog-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    border-color: hsl(var(--primary) / 0.5);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .blog-card:active {
    border-color: hsl(var(--primary) / 0.5);
  }
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  height: 12rem;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .blog-card:active .blog-card-image img {
    transform: scale(1.05);
  }
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  transition: color 0.3s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card-title {
    color: hsl(var(--primary));
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .blog-card:active .blog-card-title {
    color: hsl(var(--primary));
  }
}

.blog-card-excerpt {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--primary));
  font-weight: 500;
  transition: gap 0.3s ease-out;
}

/* Only apply hover effects on devices that support true hovering */
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-read-more {
    gap: 0.5rem;
  }

  .blog-card:hover .blog-read-more svg {
    transform: translateX(2px);
  }
}

/* Active states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .blog-card:active .blog-read-more {
    gap: 0.5rem;
  }

  .blog-card:active .blog-read-more svg {
    transform: translateX(2px);
  }
}

.blog-read-more svg {
  transition: transform 0.3s ease-out;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  padding: 0.75rem 1rem;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  color: hsl(var(--foreground));
  font-size: 1rem;
  width: 100%;
  max-width: 20rem;
}

.newsletter-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.newsletter-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .newsletter-input {
    width: 20rem;
  }
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
}/* End custom CSS */