@charset "UTF-8";
/*
 * Web Artisans - Premium Design & Utility System
 * Base style overrides and custom utilities
 */

:root {
  --color-primary: #8b5cf6;     /* Violet */
  --color-primary-glow: rgba(139, 92, 246, 0.15);
  --color-secondary: #06b6d4;   /* Cyan */
  --color-secondary-glow: rgba(6, 182, 212, 0.15);
  --color-accent: #10b981;      /* Emerald */
  --color-dark-950: #040405;
  --color-dark-900: #09090b;
  --color-dark-800: #141416;
  --color-dark-700: #1f1f23;
  --color-text-muted: #9ca3af;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-950);
  color: #ffffff;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Background Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.02;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-950);
}
::-webkit-scrollbar-thumb {
  background: var(--color-dark-800);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Premium Glassmorphism */
.glass-panel {
  background: rgba(14, 14, 17, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel-interactive {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.glass-panel-interactive:hover {
  background: rgba(14, 14, 17, 0.85);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 10px 30px -10px var(--color-primary-glow);
  transform: translateY(-2px);
}

/* Neon Glows */
.text-gradient-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-rainbow {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 30%, #ec4899 60%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-border {
  position: relative;
}
.neon-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.neon-border:hover::after {
  opacity: 1;
}

/* Dynamic counter reveal */
.stat-counter {
  font-family: var(--font-heading);
  background: linear-gradient(to bottom, #ffffff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accordion details styling */
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary svg {
  transform: rotate(180deg);
}

/* Custom Swiper customization */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Form Styles */
.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-glow);
  outline: none;
}

/* Pagination navigation styles */
.pagination-nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: var(--color-dark-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.page-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.page-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

/* Noise texture animation for premium layouts */
@keyframes noise-animation {
  0% { transform: translate(0,0) }
  10% { transform: translate(-5%,-5%) }
  20% { transform: translate(-10%,5%) }
  30% { transform: translate(5%,-10%) }
  40% { transform: translate(-5%,15%) }
  50% { transform: translate(-10%,5%) }
  60% { transform: translate(15%,0) }
  70% { transform: translate(0,10%) }
  80% { transform: translate(-15%,0) }
  90% { transform: translate(10%,5%) }
  100% { transform: translate(5%,0) }
}

/* Ghost Button - used across views but was missing from CSS */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.08);
  color: #ffffff;
}
.btn-ghost:active {
  transform: scale(0.97);
}
.btn-ghost.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}
.btn-ghost.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* ====================================================
   FIX: noise-overlay was z-index:9999, blocking all clicks
   ==================================================== */
.noise-overlay {
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Gradient text utility (fallback for non-Tailwind CDN contexts) */
.text-gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form input dark background for selects/inputs where bg-[#09090b] is used */
select.form-select-dark,
input.form-input-dark {
  background-color: #09090b;
}

/* Ensure select dropdowns are visible (dark bg) */
select option {
  background-color: #09090b;
  color: #ffffff;
}

/* ============================================================
   COMPONENT STYLES - Converted from @apply (Tailwind CDN independent)
   These were previously in <style type="text/tailwindcss"> in main.php
   and required Tailwind CDN JS to process. Now pure CSS - always works.
   ============================================================ */

/* --- Text Gradients --- */
.text-gradient {
  background: linear-gradient(90deg, #a78bfa, #f472b6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-purple {
  background: linear-gradient(90deg, #a78bfa, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-cyan {
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Navbar --- */
#navbar {
  border: none !important;
  border-bottom: none !important;
}
.navbar-inner {
  width: 100%;
  border-bottom: none !important;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  position: relative;
  z-index: 60;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 10px 15px -3px rgba(139,92,246,0.2);
}
.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(0.5rem);
  z-index: 50;
}
.nav-dropdown-inner {
  background: rgba(9,9,11,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-dropdown-icon { color: #8b5cf6; font-size: 1rem; width: 1.25rem; text-align: center; }
.nav-dropdown-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: #22d3ee;
  padding: 0.5rem 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: block;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown-all:hover { color: #a5f3fc; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(139,92,246,0.2);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
  transform: scale(1.05);
}
.btn-primary:active { transform: scale(0.95); }
.btn-primary.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-primary.btn-xl { padding: 1rem 2.5rem; font-size: 1.125rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); transform: scale(1.05); }
.btn-secondary:active { transform: scale(0.95); }
.btn-secondary.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }

/* --- Mobile Menu --- */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
  z-index: 50;
}
@media (max-width: 1023px) {
  .mobile-toggle-btn {
    display: flex;
  }
}
.mobile-toggle-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
  transition: all 0.3s;
  display: block;
}
.mobile-toggle-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle-btn.active span:nth-child(2) { opacity: 0; }
.mobile-toggle-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4,4,5,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 40;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.5s, visibility 0.5s;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .mobile-menu {
    display: flex;
  }
}
.mobile-menu.active { 
  transform: translateX(0); 
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  max-width: 24rem;
  margin: 0 auto;
  width: 100%;
}
.mobile-nav-link {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: -0.02em;
  display: inline-block;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { 
  color: #fff; 
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  transform: scale(1.05); 
}

/* --- Footer --- */
.footer-wrap {
  background: #040405;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer-glow-1 {
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(124,58,237,0.1);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}
.footer-glow-2 {
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(6,182,212,0.1);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}
.newsletter-bar { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 4rem; margin-bottom: 4rem; }
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
}
@media (min-width: 1024px) {
  .newsletter-inner {
    flex-direction: row; padding: 3rem;
  }
}
.newsletter-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 1024px) {
  .newsletter-text h3 {
    font-size: 1.875rem;
  }
}
.newsletter-text p { color: #9ca3af; font-size: 0.875rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .newsletter-form {
    max-width: 36rem;
  }
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  transition: all 0.3s;
  outline: none;
}
.newsletter-input::placeholder { color: #6b7280; }
.newsletter-input:focus { border-color: #8b5cf6; box-shadow: 0 0 0 2px rgba(139,92,246,0.2); }
.footer-main { margin-bottom: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-brand p { color: #9ca3af; font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover { color: #fff; border-color: rgba(139,92,246,0.5); background: rgba(139,92,246,0.1); }
.footer-col { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-heading { color: #fff; font-weight: 600; font-size: 1.125rem; font-family: var(--font-heading); }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.footer-links a { color: #9ca3af; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; color: #9ca3af; font-size: 0.875rem; }
.footer-contact i { color: #8b5cf6; font-size: 1rem; }
.footer-contact a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trust-badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  color: #d1d5db;
  font-weight: 500;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* --- WhatsApp & Back to Top --- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(37,211,102,0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn:active { transform: scale(0.95); }
.whatsapp-label {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
  pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-label { opacity: 1; }
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.back-to-top:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.back-to-top:active { transform: scale(0.95); }
.back-to-top.show { opacity: 1; visibility: visible; }

/* ============================================================
   SECTION & PAGE COMPONENT STYLES
   All semantic custom classes used across views
   ============================================================ */

/* ---- Layout Utilities ---- */
.container { width: 100%; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* ---- Section Shared Patterns ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-glow-left {
  position: absolute;
  left: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(139,92,246,0.08), transparent 70%);
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(60px);
}
.section-glow-right {
  position: absolute;
  right: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%);
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(60px);
}

/* ---- Headings ---- */
.heading-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}
.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  font-family: var(--font-heading);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark-950);
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 30vw; height: 30vw;
  max-width: 400px; max-height: 400px;
  top: 40%; right: 20%;
  background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 20px) scale(1.08); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14,14,17,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e5e7eb;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge-1 { top: 20%; left: 5%; animation-delay: 0s; }
.floating-badge-2 { top: 35%; right: 5%; animation-delay: 1s; }
.floating-badge-3 { bottom: 35%; left: 8%; animation-delay: 2s; }
.floating-badge-4 { bottom: 25%; right: 8%; animation-delay: 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d1d5db;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.hero-title-line { display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 5rem; /* Centered in the lower viewport space on desktop, balancing the empty space below the CTAs */
}
@media (max-width: 767px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}
.hero-stat {
  text-align: center;
  padding: 0 2rem;
}
.hero-stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(to bottom, #fff 30%, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.hero-stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
  .hero-stat-divider {
    display: none;
  }
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: #6b7280;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 9999px;
  position: absolute;
  top: 6px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================================
   TRUSTED LOGOS
   ============================================================ */
.trusted-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: center;
  justify-content: center;
}
.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s;
}
.trusted-logo-item:hover { color: #d1d5db; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { position: relative; overflow: hidden; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: rgba(14,14,17,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(139,92,246,0.15);
}
.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-card-inner { position: relative; }
.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(139,92,246,0.2);
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  font-family: var(--font-heading);
  color: #fff;
}
.service-excerpt {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.2s;
}
.service-card:hover .service-arrow { gap: 0.625rem; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section { position: relative; overflow: hidden; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-content {}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
}
.why-visual { position: relative; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-stat-card {
  background: rgba(14,14,17,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-stat-card:hover { border-color: rgba(139,92,246,0.2); transform: translateY(-2px); }
.why-stat-card-1::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 0%, rgba(139,92,246,0.08), transparent 60%); pointer-events: none; }
.why-stat-card-2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(6,182,212,0.08), transparent 60%); pointer-events: none; }
.why-stat-card-3::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 100%, rgba(236,72,153,0.06), transparent 60%); pointer-events: none; }
.why-stat-card-4::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 100%, rgba(16,185,129,0.06), transparent 60%); pointer-events: none; }
.why-stat-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(to bottom, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-stat-label { font-size: 0.8rem; color: #6b7280; font-weight: 500; }
.why-stars { display: flex; gap: 0.25rem; color: #fbbf24; margin-top: 0.5rem; font-size: 0.875rem; }
.why-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(139,92,246,0.05), transparent 60%);
  pointer-events: none;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.03), transparent);
  pointer-events: none;
}
.testimonial-card {
  background: rgba(14,14,17,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover { border-color: rgba(139,92,246,0.2); }
.testimonial-stars { display: flex; gap: 0.25rem; color: #fbbf24; margin-bottom: 1rem; }
.testimonial-text {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-initials { font-weight: 700; font-size: 0.875rem; }
.testimonial-info {}
.testimonial-info strong { display: block; font-weight: 700; font-size: 0.9rem; color: #fff; }
.testimonial-country { font-size: 0.75rem; color: #6b7280; }
.testimonials-swiper { padding-bottom: 3rem !important; }
.testimonials-pagination { bottom: 0 !important; }
.testimonials-prev,
.testimonials-next {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 9999px !important;
  color: #fff !important;
  transition: all 0.3s;
}
.testimonials-prev:hover, .testimonials-next:hover { background: rgba(139,92,246,0.2) !important; }
.testimonials-prev::after, .testimonials-next::after { font-size: 0.875rem !important; font-weight: 700 !important; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(14,14,17,0.8);
  transition: all 0.4s;
  group: true;
}
.portfolio-card:hover { border-color: rgba(139,92,246,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.portfolio-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 3rem;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,4,5,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-view-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
}
.portfolio-view-btn:hover { background: rgba(139,92,246,0.4); }
.portfolio-card-info { padding: 1.25rem; }
.portfolio-preview { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.portfolio-cat { font-size: 0.75rem; color: var(--color-primary); font-weight: 600; margin-bottom: 0.375rem; }
.portfolio-client { font-size: 0.8rem; color: #6b7280; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-preview-section { position: relative; overflow: hidden; }
.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card {
  background: rgba(14,14,17,0.7);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { border-color: rgba(139,92,246,0.25); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1)); overflow: hidden; }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #374151; }
.blog-card-body { padding: 1.5rem; }
.blog-cat-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); background: rgba(139,92,246,0.1); border-radius: 9999px; padding: 0.25rem 0.75rem; margin-bottom: 0.75rem; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.625rem; font-family: var(--font-heading); }
.blog-excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.65; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: #4b5563; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8rem; font-weight: 600; color: var(--color-primary); margin-top: 1rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; overflow: hidden; }
.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139,92,246,0.08), transparent);
  pointer-events: none;
}

/* ============================================================
   PRICING - Billing Toggle
   ============================================================ */
.bill-amount { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; font-family: var(--font-heading); }
.bill-period { font-size: 0.875rem; color: #6b7280; }

/* ============================================================
   SCROLL SMOOTH (body level)
   ============================================================ */
html.scroll-smooth { scroll-behavior: smooth; }

/* ============================================================
   TAILWIND CUSTOM COLOR UTILITIES
   Fallback CSS for custom colors (primary/secondary/accent/dark-*)
   These work even if Tailwind CDN is slow or unavailable.
   Colors match tailwind.config in main layout.
   ============================================================ */

/* -- Backgrounds -- */
.bg-primary { background-color: #8b5cf6; }
.bg-primary\/5 { background-color: rgba(139,92,246,0.05); }
.bg-primary\/10 { background-color: rgba(139,92,246,0.10); }
.bg-primary\/15 { background-color: rgba(139,92,246,0.15); }
.bg-primary\/20 { background-color: rgba(139,92,246,0.20); }
.bg-primary\/25 { background-color: rgba(139,92,246,0.25); }
.bg-primary\/30 { background-color: rgba(139,92,246,0.30); }
.bg-secondary { background-color: #06b6d4; }
.bg-secondary\/5 { background-color: rgba(6,182,212,0.05); }
.bg-secondary\/10 { background-color: rgba(6,182,212,0.10); }
.bg-secondary\/20 { background-color: rgba(6,182,212,0.20); }
.bg-secondary\/80 { background-color: rgba(6,182,212,0.80); }
.bg-accent\/10 { background-color: rgba(16,185,129,0.10); }
.bg-accent\/20 { background-color: rgba(16,185,129,0.20); }
.bg-dark-950 { background-color: #040405; }
.bg-dark-900 { background-color: #09090b; }
.bg-dark-800 { background-color: #141416; }
.bg-dark-700 { background-color: #1f1f23; }

/* -- Text -- */
.text-primary { color: #8b5cf6; }
.text-secondary { color: #06b6d4; }
.text-accent { color: #10b981; }

/* -- Borders -- */
.border-primary { border-color: #8b5cf6; }
.border-primary\/20 { border-color: rgba(139,92,246,0.20); }
.border-primary\/25 { border-color: rgba(139,92,246,0.25); }
.border-primary\/30 { border-color: rgba(139,92,246,0.30); }
.border-primary\/50 { border-color: rgba(139,92,246,0.50); }
.border-secondary { border-color: #06b6d4; }
.border-secondary\/20 { border-color: rgba(6,182,212,0.20); }
.border-secondary\/30 { border-color: rgba(6,182,212,0.30); }
.border-accent\/20 { border-color: rgba(16,185,129,0.20); }
.border-accent\/30 { border-color: rgba(16,185,129,0.30); }

/* -- Shadows -- */
.shadow-primary\/10 { --tw-shadow-color: rgba(139,92,246,0.10); box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),0 10px 15px -3px rgba(139,92,246,0.10),0 4px 6px -4px rgba(139,92,246,0.10); }
.shadow-primary\/20 { box-shadow: 0 10px 15px -3px rgba(139,92,246,0.20),0 4px 6px -4px rgba(139,92,246,0.20); }
.shadow-primary\/25 { box-shadow: 0 10px 15px -3px rgba(139,92,246,0.25),0 4px 6px -4px rgba(139,92,246,0.25); }

/* -- Gradient from/via/to -- */
.from-primary { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139,92,246,0)); }
.from-primary\/5 { --tw-gradient-from: rgba(139,92,246,0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139,92,246,0)); }
.from-primary\/10 { --tw-gradient-from: rgba(139,92,246,0.10); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139,92,246,0)); }
.from-primary\/15 { --tw-gradient-from: rgba(139,92,246,0.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139,92,246,0)); }
.from-primary\/20 { --tw-gradient-from: rgba(139,92,246,0.20); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139,92,246,0)); }
.from-dark-950 { --tw-gradient-from: #040405; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4,4,5,0)); }
.to-secondary { --tw-gradient-to: #06b6d4; }
.to-secondary\/5 { --tw-gradient-to: rgba(6,182,212,0.05); }
.to-secondary\/10 { --tw-gradient-to: rgba(6,182,212,0.10); }
.to-secondary\/15 { --tw-gradient-to: rgba(6,182,212,0.15); }
.to-secondary\/20 { --tw-gradient-to: rgba(6,182,212,0.20); }
.via-dark-950\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(4,4,5,0.20), var(--tw-gradient-to, rgba(4,4,5,0)); }

/* -- Hover states -- */
.hover\:bg-primary:hover { background-color: #8b5cf6; }
.hover\:bg-primary\/10:hover { background-color: rgba(139,92,246,0.10); }
.hover\:bg-primary\/95:hover { background-color: rgba(139,92,246,0.95); }
.hover\:text-primary:hover { color: #8b5cf6; }
.hover\:border-primary\/20:hover { border-color: rgba(139,92,246,0.20); }
.hover\:border-primary\/25:hover { border-color: rgba(139,92,246,0.25); }
.hover\:border-primary\/40:hover { border-color: rgba(139,92,246,0.40); }
.hover\:border-secondary\/20:hover { border-color: rgba(6,182,212,0.20); }
.hover\:border-secondary\/40:hover { border-color: rgba(6,182,212,0.40); }
.hover\:border-accent\/20:hover { border-color: rgba(16,185,129,0.20); }
.hover\:border-accent\/40:hover { border-color: rgba(16,185,129,0.40); }
.group-hover\:text-primary { color: #8b5cf6; }
.group:hover .group-hover\:text-primary { color: #8b5cf6; }
.focus\:border-primary:focus { border-color: #8b5cf6; }

/* ============================================================
   CRITICAL TAILWIND UTILITY FALLBACKS
   Most-used utilities guaranteed to work without CDN
   ============================================================ */

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.inline { display: inline; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Flex utilities */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.self-start { align-self: flex-start; }
.shrink-0 { flex-shrink: 0; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Width / Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Text sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }

/* Font weights */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Text colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-cyan-400 { color: #22d3ee; }
.text-cyan-300 { color: #67e8f9; }
.text-violet-400 { color: #a78bfa; }
.text-violet-500 { color: #8b5cf6; }
.text-purple-400 { color: #c084fc; }
.text-green-400 { color: #4ade80; }
.text-orange-400 { color: #fb923c; }
.text-yellow-400 { color: #facc15; }
.text-pink-400 { color: #f472b6; }
.text-emerald-400 { color: #34d399; }
.text-fuchsia-400 { color: #e879f9; }
.text-blue-400 { color: #60a5fa; }
.text-rose-400 { color: #fb7185; }
.text-indigo-400 { color: #818cf8; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.10); }
.bg-white\/\[0\.02\] { background-color: rgba(255,255,255,0.02); }
.bg-black\/60 { background-color: rgba(0,0,0,0.60); }
.bg-black\/80 { background-color: rgba(0,0,0,0.80); }
.bg-black\/85 { background-color: rgba(0,0,0,0.85); }
.bg-black\/90 { background-color: rgba(0,0,0,0.90); }
.bg-\[\#09090b\] { background-color: #09090b; }
.bg-\[\#040405\] { background-color: #040405; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-violet-600 { background-color: #7c3aed; }
.bg-violet-500 { background-color: #8b5cf6; }

/* Borders */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-white { border-color: #ffffff; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/8 { border-color: rgba(255,255,255,0.08); }
.border-white\/10 { border-color: rgba(255,255,255,0.10); }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }
.border-white\/20 { border-color: rgba(255,255,255,0.20); }

/* Border radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Padding */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.ml-2 { margin-left: 0.5rem; }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Letter spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-full { top: 100%; }
.left-1\/2 { left: 50%; }
.right-full { right: 100%; }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) skewX(var(--tw-skew-x,0)) skewY(var(--tw-skew-y,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.-translate-x-full { --tw-translate-x: -100%; transform: translateX(-100%); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translateX(-50%); }
.translate-x-0 { --tw-translate-x: 0; transform: translateX(0); }
.translate-x-full { --tw-translate-x: 100%; transform: translateX(100%); }
.translate-y-0 { --tw-translate-y: 0; transform: translateY(0); }
.translate-y-2 { --tw-translate-y: 0.5rem; transform: translateY(0.5rem); }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
.scale-100 { --tw-scale-x:1; --tw-scale-y:1; transform: scaleX(1) scaleY(1); }
.scale-105 { --tw-scale-x:1.05; --tw-scale-y:1.05; transform: scaleX(1.05) scaleY(1.05); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.active\:scale-95:active { transform: scale(0.95); }

/* Transitions */
.transition { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter; transition-duration: 150ms; }
.transition-all { transition-property: all; transition-duration: 150ms; }
.transition-colors { transition-property: color,background-color,border-color; transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

/* Backdrop blur */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* Background gradient */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.from-violet-600 { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(124,58,237,0)); }
.from-violet-400 { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(167,139,250,0)); }
.from-violet-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(139,92,246,0)); }
.from-cyan-400 { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(34,211,238,0)); }
.from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(6,182,212,0)); }
.from-pink-400 { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(244,114,182,0)); }
.from-fuchsia-500 { --tw-gradient-from: #d946ef; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(217,70,239,0)); }
.from-black\/80 { --tw-gradient-from: rgba(0,0,0,0.80); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(0,0,0,0)); }
.from-black\/85 { --tw-gradient-from: rgba(0,0,0,0.85); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,rgba(0,0,0,0)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to,transparent); }
.via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to,rgba(244,114,182,0)); }
.to-cyan-400 { --tw-gradient-to: #22d3ee; }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }
.to-blue-500 { --tw-gradient-to: #3b82f6; }
.to-fuchsia-500 { --tw-gradient-to: #d946ef; }
.to-black { --tw-gradient-to: #000000; }
.to-transparent { --tw-gradient-to: transparent; }

/* Background clip */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; -webkit-text-fill-color: transparent; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }

/* Text decoration */
.no-underline { text-decoration: none; }
.underline { text-decoration: underline; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }

/* List */
.list-none { list-style: none; }

/* Specific sizes used in views */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.h-0\.5 { height: 0.125rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-px { height: 1px; }
.min-w-0 { min-width: 0; }
.max-h-0 { max-height: 0; }
.max-h-96 { max-height: 24rem; }

/* Responsive grid breakpoints */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:text-left { text-align: left; }
}
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .md\:text-left { text-align: left; }
  .md\:block { display: block; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:max-w-xl { max-width: 36rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* --- Web Artisans Mobile Polish & Spacing Optimizations --- */
@media (max-width: 768px) {
  #main-content > section:first-of-type:not(.hero-section) {
    padding-top: 7.5rem !important; /* Safe mobile padding accounting for fixed mobile navbar */
  }
  .hero-section {
    display: block !important; /* Force standard block layout to prevent absolute height/flex overlap bugs on mobile! */
    padding: 5.5rem 0 2rem !important; /* Shrunk from 7.5rem to pull hero contents up, resolving "top have much space"! */
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0 2rem !important; /* Added 2rem bottom padding to cleanly push the trusted section down! */
  }
  .hero-badge {
    margin-top: 0.5rem !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem !important; /* Shrunk from 1.5rem to bring stats closer to the buttons! */
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem !important;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 1rem !important; /* Safe separation from the bottom container boundaries! */
  }
  .hero-stat {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .hero-stat-divider {
    display: none !important;
  }
  .scroll-indicator {
    display: none !important;
  }
  
  /* Reduction of section paddings on mobile devices */
  .services-section,
  .portfolio-preview,
  .why-section,
  .testimonials-section,
  .blog-preview-section {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .trusted-section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* Footer 2-Column Mobile Layout */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
  }
  .footer-contact-col {
    grid-column: span 2 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .footer-contact-info {
    flex: 1 !important;
  }
  .footer-contact-col .trust-badges {
    flex: 1 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding-left: 1rem !important;
  }
  .footer-contact-col .trust-badge {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

/* Beautiful Section spacing for big screens (desktop) */
@media (min-width: 769px) {
  #main-content > section:first-of-type:not(.hero-section) {
    padding-top: 10rem !important; /* Elegant vertical balance under the fixed desktop navbar (80px navbar + 80px visual gap) */
  }
  .services-section,
  .portfolio-preview,
  .why-section,
  .testimonials-section,
  .blog-preview-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .trusted-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
