        /* CSS Variables */
        :root {
            --background: hsl(0 0% 100%);
            --foreground: hsl(210 25% 7.8431%);
            --card: hsl(180 6.6667% 97.0588%);
            --card-foreground: hsl(210 25% 7.8431%);
            --popover: hsl(0 0% 100%);
            --popover-foreground: hsl(210 25% 7.8431%);
            --primary: hsl(216 87% 42%);
            --primary-foreground: hsl(0 0% 100%);
            --primary-600: hsl(216 87% 42%);
            --primary-700: hsl(216 87% 35%);
            --secondary: hsl(210 25% 7.8431%);
            --secondary-foreground: hsl(0 0% 100%);
            --muted: hsl(240 1.9608% 90%);
            --muted-foreground: hsl(210 25% 7.8431%);
            --accent: hsl(186 100% 42%);
            --accent-foreground: hsl(216 87% 42%);
            --accent-500: hsl(186 100% 42%);
            --accent-600: hsl(186 100% 35%);
            --destructive: hsl(356.3033 90.5579% 54.3137%);
            --destructive-foreground: hsl(0 0% 100%);
            --border: hsl(201.4286 30.4348% 90.9804%);
            --input: hsl(200 23.0769% 97.4510%);
            --ring: hsl(202.8169 89.1213% 53.1373%);
            --font-sans: 'Inter', sans-serif;
            --radius: 1.3rem;
        }

        .dark {
            --background: hsl(0 0% 0%);
            --foreground: hsl(200 6.6667% 91.1765%);
            --card: hsl(228 9.8039% 10%);
            --card-foreground: hsl(0 0% 85.0980%);
            --popover: hsl(0 0% 0%);
            --popover-foreground: hsl(200 6.6667% 91.1765%);
            --primary: hsl(203.7736 87.6033% 52.5490%);
            --primary-foreground: hsl(0 0% 100%);
            --primary-600: hsl(203.7736 87.6033% 52.5490%);
            --primary-700: hsl(203.7736 87.6033% 45%);
            --secondary: hsl(195.0000 15.3846% 94.9020%);
            --secondary-foreground: hsl(210 25% 7.8431%);
            --muted: hsl(0 0% 9.4118%);
            --muted-foreground: hsl(210 3.3898% 46.2745%);
            --accent: hsl(205.7143 70% 7.8431%);
            --accent-foreground: hsl(203.7736 87.6033% 52.5490%);
            --border: hsl(210 5.2632% 14.9020%);
            --input: hsl(207.6923 27.6596% 18.4314%);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: calc(var(--radius) - 4px);
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary-600);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-700);
            transform: scale(1.05);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-600) 0%, hsl(216 100% 60%) 50%, var(--accent-500) 100%);
        }

        .hero-pattern {
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        .animate-slide-up {
            animation: slideUp 0.6s ease-out;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-float-delayed-2s {
            animation: float 6s ease-in-out infinite;
            animation-delay: -2s;
        }

        .animate-float-delayed-4s {
            animation: float 6s ease-in-out infinite;
            animation-delay: -4s;
        }

        @keyframes pulse {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.8;
                transform: scale(1.2);
            }
        }

        /* Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.3s;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid hsl(201.4286 30.4348% 90.9804%);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-main {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-600);
        }

        .logo-sub {
            font-size: 0.875rem;
            color: #6b7280;
            margin-left: 0.5rem;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-600);
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: #374151;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem;
            color: #374151;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-nav-link:hover {
            color: var(--primary-600);
        }

        .mobile-contact-btn {
            display: block;
            background-color: var(--primary-600);
            color: white;
            text-align: center;
            padding: 0.75rem;
            margin: 1rem 0.75rem 0;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .mobile-contact-btn:hover {
            background-color: var(--primary-700);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(145deg, #0e1129, #1b1f4a);
            position: relative;
            overflow: hidden;
            color: white;
            text-align: center;
        }

        .hero-bg-elements {
            position: absolute;
            inset: 0;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .float-1 {
            top: 5rem;
            left: 2.5rem;
            width: 5rem;
            height: 5rem;
        }

        .float-2 {
            top: 10rem;
            right: 5rem;
            width: 4rem;
            height: 4rem;
        }

        .float-3 {
            bottom: 5rem;
            left: 25%;
            width: 3rem;
            height: 3rem;
        }

        .hero-content {
            position: relative;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .stat-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 48rem;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-cols-1 { grid-template-columns: 1fr; }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

        /* Cards */
        .card {
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            overflow: hidden;
        }

        .card:hover {
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .card-content {
            padding: 2rem;
        }

        .card-image {
            width: 100%;
            height: 16rem;
            object-fit: cover;
        }

        .icon-wrapper {
            width: 4rem;
            height: 4rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .icon-primary {
            background-color: var(--primary-600);
            color: white;
        }

        .icon-emerald {
            background-color: #10b981;
            color: white;
        }

        .icon-violet {
            background-color: #8b5cf6;
            color: white;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--foreground);
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary-600);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 8rem;
        }

        /* Background Colors */
        .bg-gray-50 { background-color: #f9fafb; }
        .bg-white { background-color: white; }
        .bg-gray-900 { background-color: #111827; }

        /* Text Colors */
        .text-white { color: white; }
        .text-gray-400 { color: #9ca3af; }
        .text-gray-600 { color: #6b7280; }
        .text-gray-900 { color: #111827; }



        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .grid-md-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .grid-md-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .grid-md-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
            
            .hero-title {
                font-size: 4.5rem;
            }
            
            .grid-lg-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .grid-lg-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .grid-lg-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Special gradient text */
        .gradient-text {
            background: linear-gradient(to right, white, #a5f3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Tag styles */
        .tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin: 0.125rem;
        }

        .tag-blue {
            background-color: #dbeafe;
            color: #1e40af;
        }

        .tag-emerald {
            background-color: #d1fae5;
            color: #065f46;
        }

        /* Contact info styles */
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            background-color: var(--primary-600);
            color: white;
            border-radius: 0.5rem;
            padding: 0.75rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .contact-details p {
            color: #6b7280;
            margin: 0;
        }

        /* Footer styles */
        .footer {
            background-color: #111827;
            color: white;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            color: #9ca3af;
            transition: color 0.3s;
        }

        .social-link:hover {
            color: white;
        }

        /* Map placeholder */
        .map-placeholder {
            background-color: #e5e7eb;
            border-radius: 0.75rem;
            height: 16rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: #6b7280;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Toast styles */
        .toast {
            position: fixed;
            top: 1rem;
            right: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .toast-description {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Service card specific styles */
        .service-card {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.3s;
        }

        .service-card:hover {
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }

        .service-card.emerald {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        }

        .service-card.violet {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
        }

        .service-icon {
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: #6b7280;
        }

        .feature-icon {
            margin-right: 0.75rem;
            color: var(--primary-600);
        }

        .feature-icon.emerald {
            color: #10b981;
        }

        .feature-icon.violet {
            color: #8b5cf6;
        }

        /* Tech stack tags */
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 4rem;
        }

        .tech-tag {
            background-color: #f3f4f6;
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            color: #374151;
            font-weight: 500;
        }

        /* --- HERO: layout & spacing --- */
.hero {
  /* use small viewport units to avoid URL bar jumps on mobile */
  min-height: 92svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 96px 16px 48px; /* room for fixed navbar */
}

.hero-content {
  position: relative;
  max-width: 72rem; /* 1152px */
  margin: 0 auto;
}

/* Fluid type for perfect scaling on phones */
.hero-title {
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw + 0.75rem, 4.5rem);
}

.hero-subtitle {
  margin: 0 auto 1.5rem;
  max-width: 48rem;
  line-height: 1.6;
  font-size: clamp(0.98rem, 1.8vw + 0.6rem, 1.25rem);
  color: rgba(255,255,255,0.92);
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* --- Benefits grid --- */
.benefits-grid {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem auto 2rem;
  max-width: 52rem;
  grid-template-columns: 1fr; /* single column by default (phones) */
}

/* grow to 2/3 columns at larger widths */
@media (min-width: 480px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(10px);
}

.benefit-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  flex: 0 0 auto;
}

.benefit-icon { width: 20px; height: 20px; }

.benefit-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.benefit-sub {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* --- Buttons: stack on mobile, row on larger --- */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 28rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; max-width: none; }
}

/* --- Social proof pills --- */
.hero-proof { margin-top: 1.75rem; }
.hero-proof-text {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.hero-proof-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0.7;
}
.hero-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Stats spacing in hero --- */
.hero-stats { margin-top: 2rem; }

/* Hide floating decorations on very small screens to prevent overlap */
.hide-on-xs { display: none; }
@media (min-width: 480px) { .hide-on-xs { display: block; } }

/* Respect reduces-motion users */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-float-delayed-2s,
  .animate-float-delayed-4s,
  .animate-slide-up { animation: none !important; }
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* 16:9 aspect ratio, tweak if you want */
  padding-bottom: 56.25%;
  background: #e5e7eb;
}
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}


 