/* ============================================
   THE VILLS GROUP - MAIN STYLES
   ============================================ */

@import url('variables.css');
@import url('glass.css');

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--tvg-gray-200);
  background: var(--bg-space-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Particle Canvas Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--tvg-white-soft);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--tvg-blue-glow);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--tvg-electric-blue);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--tvg-white-soft) 0%, var(--tvg-blue-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--tvg-gold) 0%, var(--tvg-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label/Tagline */
.label-mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--tvg-gray-400);
  margin-bottom: var(--space-md);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: 1000px;
}

.section {
  position: relative;
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-5xl) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
}

.main-nav.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--font-bold);
  color: var(--tvg-white-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.6)) 
          drop-shadow(0 0 30px rgba(220, 38, 38, 0.4));
  transition: filter var(--transition-normal);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8)) 
          drop-shadow(0 0 40px rgba(220, 38, 38, 0.5))
          drop-shadow(0 0 60px rgba(220, 38, 38, 0.3));
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .logo-text .main {
  font-size: var(--text-body);
  font-weight: var(--font-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tvg-white-soft);
}

.nav-logo .logo-text .sub {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: 0.08em;
  color: var(--tvg-gray-400);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-small);
  font-weight: var(--font-medium);
  color: var(--tvg-gray-300);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tvg-electric-blue);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--tvg-white-soft);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-fixed) + 10);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tvg-white-soft);
  transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--tvg-navy-deep);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-fixed) + 5);
  padding: var(--space-3xl) var(--space-xl);
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-fixed) + 4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-drawer-links a {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--font-semibold);
  color: var(--tvg-white-soft);
  text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-hero-mesh);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--tvg-gray-400);
  margin-bottom: var(--space-xl);
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--tvg-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: var(--font-black);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: var(--text-h4);
  color: var(--tvg-gray-300);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust Bar Marquee */
.trust-bar {
  position: absolute;
  bottom: var(--space-2xl);
  left: 0;
  right: 0;
  overflow: hidden;
  padding: var(--space-md) 0;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 22, 40, 0.8) 20%, rgba(10, 22, 40, 0.8) 80%, transparent 100%);
}

.trust-marquee {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--tvg-gray-400);
}

.trust-item::before {
  content: '✦';
  color: var(--tvg-gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--tvg-gray-400);
  font-size: var(--text-h4);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  padding: var(--space-xl);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--tvg-blue-glow);
}

.service-title {
  font-size: var(--text-h4);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-sm);
}

.service-desc {
  color: var(--tvg-gray-400);
  font-size: var(--text-small);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: var(--font-semibold);
  color: var(--tvg-blue-glow);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ============================================
   WHY TVG SECTION
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-content h2 {
  margin-bottom: var(--space-lg);
}

.why-content p {
  color: var(--tvg-gray-300);
  margin-bottom: var(--space-xl);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-md);
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--tvg-blue-glow);
}

.why-feature-text h4 {
  font-size: var(--text-body);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-xs);
}

.why-feature-text p {
  font-size: var(--text-small);
  color: var(--tvg-gray-400);
  margin: 0;
}

.why-visual {
  position: relative;
}

.why-image {
  width: 100%;
  border-radius: var(--radius-3xl);
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: var(--space-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries-scroll::-webkit-scrollbar {
  display: none;
}

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

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

.testimonial-card {
  padding: var(--space-2xl);
  text-align: center;
}

.testimonial-quote {
  font-size: var(--text-h4);
  font-style: italic;
  color: var(--tvg-gray-200);
  margin-bottom: var(--space-xl);
  line-height: var(--leading-relaxed);
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  line-height: 1;
  color: var(--tvg-electric-blue);
  opacity: 0.3;
  display: block;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tvg-electric-blue), var(--tvg-royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--font-bold);
  color: var(--tvg-white-soft);
  margin-bottom: var(--space-sm);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: var(--font-semibold);
  color: var(--tvg-white-soft);
}

.testimonial-role {
  font-size: var(--text-small);
  color: var(--tvg-gray-400);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--tvg-gray-300);
  margin-bottom: var(--space-xl);
}

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

.footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--tvg-gray-400);
  font-size: var(--text-small);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--tvg-gray-300);
}

.footer-column h4 {
  font-size: var(--text-body);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-small);
  color: var(--tvg-gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--tvg-white-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  font-size: var(--text-small);
  color: var(--tvg-gray-500);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--text-small);
  color: var(--tvg-gray-500);
}

/* iStart Badge */
.istart-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.istart-badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  border-radius: var(--radius-md);
}

.istart-badge-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.istart-badge-text h5 {
  font-size: var(--text-small);
  font-weight: var(--font-semibold);
  color: var(--tvg-white-soft);
  margin-bottom: 2px;
}

.istart-badge-text p {
  font-size: var(--text-xs);
  color: var(--tvg-gray-400);
  margin: 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-fixed);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--tvg-navy-deep);
  transform: translateX(-100%);
  pointer-events: none;
}

.page-transition.active {
  animation: page-wipe 0.8s ease-in-out;
}

@keyframes page-wipe {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--tvg-navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: logo-pulse 1.2s ease-in-out;
}

.preloader-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.7)) 
          drop-shadow(0 0 40px rgba(220, 38, 38, 0.5))
          drop-shadow(0 0 60px rgba(220, 38, 38, 0.3));
}

.preloader-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--font-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tvg-white-soft);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

@keyframes logo-pulse {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.preloader-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--tvg-red), var(--tvg-red-glow));
  border-radius: var(--radius-pill);
  animation: bar-fill 1s ease-out forwards;
}

@keyframes bar-fill {
  0% { width: 0; }
  100% { width: 100%; }
}

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }
  
  .hero-subtitle {
    font-size: var(--text-body);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: var(--space-md);
    right: var(--space-md);
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .glass-btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.hidden { display: none !important; }
.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;
}
