/* BRAYNIX STUDIOS BRAND THEME - CSS VARIABLES */
:root {
  /* Brand Colors */
  --background: hsl(13, 0%, 5%); /* #0D0D0D deep black */
  --foreground: hsl(0, 0%, 95%); /* near-white text */
  --border: hsl(0, 0%, 15%); /* subtle borders */
  --card: hsl(0, 0%, 8%); /* slightly elevated from background */
  --card-foreground: hsl(0, 0%, 92%); /* card text */
  --card-border: hsl(0, 0%, 18%); /* card borders */
  --primary: hsl(217, 91%, 60%); /* #3B82F6 accent blue */
  --primary-foreground: hsl(0, 0%, 98%); /* white text on blue */
  --secondary: hsl(0, 0%, 14%); /* secondary elements */
  --secondary-foreground: hsl(0, 0%, 80%); /* secondary text */
  --muted: hsl(0, 0%, 12%); /* muted backgrounds */
  --muted-foreground: hsl(0, 0%, 60%); /* muted text */
  --accent: hsl(0, 0%, 16%); /* accent backgrounds */
  --accent-foreground: hsl(0, 0%, 78%); /* accent text */
  --destructive: hsl(0, 84%, 60%); /* error/destructive */
  --destructive-foreground: hsl(0, 0%, 98%); /* white text on red */
  --input: hsl(0, 0%, 20%); /* input backgrounds */
  --ring: hsl(217, 91%, 60%); /* focus rings */

  /* Fonts */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-brand: 'Montserrat', system-ui, sans-serif;

  /* Effects */
  --elevate-1: rgba(255, 255, 255, 0.05);
  --elevate-2: rgba(255, 255, 255, 0.12);
  
  /* Shadows */
  --shadow-sm: 0px 1px 3px 0px rgba(0, 0, 0, 0.4), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  --shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.4), 0px 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0px 10px 15px -3px rgba(0, 0, 0, 0.4), 0px 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0px 20px 25px -5px rgba(0, 0, 0, 0.4), 0px 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-feature-settings: "rlig" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: hsl(217, 91%, 55%);
}

.btn-outline {
  border-color: var(--border);
  background-color: transparent;
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  min-width: 44px;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn:not(.btn-sm):not(.btn-lg) {
  height: 2.5rem;
  padding: 0 1rem;
  min-width: 44px;
}

/* Utility Classes */
.w-full { width: 100%; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Braynix Gradient Effect */
.pi-gradient {
  background: linear-gradient(135deg, #3B82F6, #06B6D4, #8B5CF6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Glassmorphism Effect */
.glassmorphism {
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3D Card Effect */
.card-3d {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.card-3d:hover {
  transform: rotateX(2deg) rotateY(3deg) scale(1.02);
}

/* Hover Elevate Effect */
.hover-elevate {
  position: relative;
  transition: all 0.3s ease;
}

.hover-elevate::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--elevate-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hover-elevate:hover::after {
  opacity: 1;
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.ripple:active::before {
  width: 300px;
  height: 300px;
}

/* Animations */
.rotate-slow {
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease forwards;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary); }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.pi-symbol {
  font-size: 5rem;
  font-family: var(--font-brand);
  font-weight: 800;
}



.typewriter-text {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--foreground);
  max-width: 24rem;
  margin: 0 auto;
  transition: opacity 1s ease;
}

.studios-blue {
  color: var(--primary);
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo-img {
  height: 4rem;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo-img {
  height: 3rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
}

.preloader-logo {
  height: 15rem;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  font-size: 1.5rem;
}

.logo-text {
  color: var(--foreground);
  margin-left: 0.5rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  font-family: var(--font-sans);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.nav-link:hover .nav-underline {
  transform: scaleX(1);
}

/* Mobile Menu */
.mobile-menu-button {
  display: flex;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: color 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0.75rem;
  right: 0.75rem;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 35;
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  padding: 1rem 0.75rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  font-size: 1rem;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: rgba(59, 130, 246, 0.1);
}

.mobile-menu-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Main Content */
.main-content {
  transition: opacity 0.5s ease;
}

/* Responsive Design */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  .pi-symbol {
    font-size: 3.5rem;
  }
  
  .typewriter-text {
    font-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
    padding: 0 0.5rem;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--background) 80%, hsla(217, 91%, 60%, 0.05) 100%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Section Styles */
.services-section,
.portfolio-section,
.testimonials-section,
.pricing-section,
.contact-section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-item {
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.portfolio-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-image {
    height: 20rem;
  }
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-actions {
  display: flex;
  gap: 1rem;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.portfolio-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 3fr;
  }
}

.footer-brand {
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo .pi-gradient {
  font-size: 1.875rem;
  font-family: var(--font-brand);
  font-weight: 800;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-family: var(--font-brand);
  font-weight: 800;
  color: var(--foreground);
  margin-left: 0.5rem;
}

.footer-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 24rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column button {
  background: none;
  border: none;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.footer-column button:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links button {
  background: none;
  border: none;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  cursor: pointer;
  font-size: 0.875rem;
}

.footer-bottom-links button:hover {
  color: var(--primary);
}

/* Testimonials Section */
.testimonials-carousel {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  min-height: 300px;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-content {
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 0.25rem;
}

.testimonial-stars i {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  text-align: left;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px) saturate(150%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--foreground);
}

.testimonial-nav:hover {
  background: var(--elevate-1);
}

.testimonial-prev {
  left: 1rem;
}

.testimonial-next {
  right: 1rem;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.testimonial-indicator {
  width: 3rem;
  height: 0.25rem;
  background-color: var(--muted);
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testimonial-indicator.active {
  background-color: var(--primary);
}

/* Legacy Pricing Styles (kept for compatibility) */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.toggle-label.active {
  color: var(--foreground);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--muted);
  transition: 0.3s;
  border-radius: 1.5rem;
}

.toggle-switch label:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.1875rem;
  bottom: 0.1875rem;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + label {
  background-color: var(--primary);
}

.toggle-switch input:checked + label:before {
  transform: translateX(1.5rem);
}

.toggle-badge {
  font-size: 0.75rem;
  color: var(--primary);
  background-color: rgba(59, 130, 246, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 7xl;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  padding: 2rem;
}

.pricing-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.pricing-name {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  color: var(--muted-foreground);
}

.pricing-content {
  padding: 2rem;
  padding-top: 0;
}

.pricing-cta {
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-features i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-footer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Traffic-Based Pricing Styles */
.pricing-base {
  margin-bottom: 3rem;
}

.base-package {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.base-header {
  margin-bottom: 1.5rem;
}

.base-header h3 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.base-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.base-price .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.base-price .price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  background-color: rgba(59, 130, 246, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.base-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 32rem;
  margin: 0 auto;
}

.base-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.base-features i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card.enterprise {
  border: 2px solid #8B5CF6;
}

.pricing-benefits {
  margin-top: 4rem;
  text-align: center;
}

.pricing-benefits h3 {
  font-size: 1.875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
}

.benefit-item i {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.benefit-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Responsive adjustments for new pricing */
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 639px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .base-package {
    padding: 1.5rem;
  }
  
  .base-price {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Android App Pricing Section */
.app-pricing-section {
  background: linear-gradient(135deg, var(--background) 0%, rgba(139, 92, 246, 0.03) 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.app-pricing-section .section-title {
  background: linear-gradient(135deg, #8B5CF6, #06B6D4, #3B82F6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-pricing-section .base-package {
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.app-pricing-section .pricing-card.enterprise {
  border: 2px solid #8B5CF6;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.app-pricing-section .benefit-item:hover {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.2);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 6xl;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form {
  border-radius: 0.5rem;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted-foreground);
}

.contact-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: #10b981;
  margin: 0 auto 1rem;
}

.contact-success h4 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--muted-foreground);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background-color: var(--input);
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.btn-text,
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-details span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social .btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.footer-social .btn i {
  width: 1rem;
  height: 1rem;
}

/* Desktop Optimization */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .services-grid {
    gap: 2.5rem;
  }
  
  .portfolio-grid {
    gap: 2.5rem;
  }
  
  .portfolio-image {
    height: 22rem;
  }
}

/* Additional Responsive Design */
@media (max-width: 639px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-lg {
    height: 3.5rem;
    padding: 0 1.5rem;
    font-size: 1.1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-image {
    height: 14rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-prev {
    left: 0.5rem;
  }
  
  .testimonial-next {
    right: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .approach-card {
    padding: 1.5rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Loading Spinner */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Focus and Accessibility */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --background: #000000;
    --foreground: #ffffff;
    --primary: #0066cc;
    --border: #666666;
  }
}

/* Dark mode detection (already dark by default) */
@media (prefers-color-scheme: light) {
  /* Users can optionally implement light mode here */
}

/* Print styles */
@media print {
  .preloader,
  .navbar,
  .mobile-menu,
  .testimonial-nav,
  .contact-form,
  .footer-social {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .glassmorphism {
    background: white !important;
    border: 1px solid #ccc !important;
  }
  
  .pi-gradient {
    color: #0066cc !important;
    -webkit-text-fill-color: unset !important;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus management for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection colors */
::selection {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Approach Section */
.approach-section {
  padding: 5rem 0;
  position: relative;
}

.approach-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-card {
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.approach-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.approach-card:hover .approach-icon {
  transform: scale(1.1);
}

.approach-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.approach-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.approach-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.approach-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.approach-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.approach-cta {
  text-align: center;
}

.approach-cta p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* New Pricing Section */
.pricing-grid-new {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .pricing-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card-new {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card-new:hover {
  transform: translateY(-8px);
}

.pricing-card-new h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.price-new {
  margin-bottom: 2rem;
}

.price-new .currency {
  font-size: 1.25rem;
  color: var(--primary);
  vertical-align: top;
}

.price-new .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-new .period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.features-new {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features-new li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.features-new i {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.btn-new {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-new:hover {
  background: hsl(217, 91%, 55%);
  transform: translateY(-2px);
}

/* Special Offer */
.special-offer {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid var(--primary);
}

.special-offer h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.offer-subtitle {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.offer-details {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .offer-details {
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.offer-price .currency {
  font-size: 1.5rem;
  color: var(--primary);
}

.offer-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.offer-price .period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.offer-features {
  list-style: none;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.offer-features i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.offer-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), #06B6D4);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Workflow Section */
.workflow-section {
  margin-top: 4rem;
  text-align: center;
}

.workflow-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.workflow-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.workflow-step p {
  color: var(--muted-foreground);
  font-weight: 500;
}

.payment-terms {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-terms p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.payment-terms p:last-child {
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 600;
}

/* Modern Contact Form */
.modal {
  width: fit-content;
  height: fit-content;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  max-width: 450px;
  margin: 10 auto;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.credit-card-info--form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input_container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.input_label {
  font-size: 12px;
  color: var(--muted-foreground);
  font-weight: 600;
}

.input_field {
  width: 100%;
  height: 45px;
  padding: 0 16px;
  border-radius: 12px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  font-family: inherit;
  transition: all 0.3s ease;
}

.input_field::placeholder {
  color: var(--muted-foreground);
}

.input_field:focus {
  border: 1px solid var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
}

.glass-select {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.glass-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.glass-select option {
  background: var(--card);
  color: var(--foreground);
  padding: 8px;
}

.input_field[type="textarea"] {
  height: auto;
  min-height: 80px;
  padding: 12px 16px;
  resize: vertical;
}

textarea.input_field {
  height: auto;
  min-height: 80px;
  padding: 12px 16px;
  resize: vertical;
}

.purchase--btn {
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #06B6D4);
  border-radius: 12px;
  border: 0;
  outline: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.purchase--btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 767px) {
  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card-new {
    padding: 1.5rem 1.25rem;
  }
  
  .price-new .amount {
    font-size: 2rem;
  }
  
  .special-offer {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  
  .offer-details {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal {
    max-width: 100%;
    margin: 0;
    border-radius: 16px;
  }
  
  .form {
    padding: 20px 16px;
    gap: 16px;
  }
  
  .credit-card-info--form {
    gap: 16px;
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .input_field {
    height: 48px;
    font-size: 16px;
  }
  
  .purchase--btn {
    height: 48px;
    font-size: 16px;
  }
  
  .input_label {
    font-size: 13px;
  }
  
  .contact-item {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .modal {
    border-radius: 12px;
  }
  
  .form {
    padding: 16px 12px;
  }
  
  .input_field {
    padding: 0 12px;
  }
  
  textarea.input_field {
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}