   :root {
       --background: 220 15% 8%;
       --foreground: 0 0% 98%;
       --card: 220 13% 12%;
       --card-foreground: 0 0% 98%;
       --primary: 16 100% 60%;
       --secondary: 184 78% 45%;
       --muted: 220 13% 18%;
       --muted-foreground: 240 5% 65%;
       --border: 220 13% 18%;
       --automz-orange: 16 100% 60%;
       --automz-teal: 184 78% 45%;
       --automz-dark: 220 15% 8%;
       --automz-darker: 220 20% 5%;
       --automz-gray: 220 13% 12%;
       --automz-light-gray: 220 13% 18%;
       --gradient-tech: linear-gradient(135deg, hsl(35 90% 50%), hsl(25 95% 55%));
   }

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

   body {
       font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
       background: hsl(var(--background));
       color: hsl(var(--foreground));
       line-height: 1.6;
       scroll-behavior: smooth;
   }

   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 1rem;
   }

   /* Navigation */
   .navbar {
       position: fixed;
       top: 0;
       width: 100%;
       background: hsla(var(--background), 0.8);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border-bottom: 1px solid hsl(var(--border));
       z-index: 1000;
       padding: 1rem 0;
   }

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

   .logo {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       font-size: 1.25rem;
       font-weight: 700;
   }

   .logo-icon {
       width: 32px;
       height: 32px;
       background: linear-gradient(135deg, hsl(var(--automz-orange)), hsl(var(--automz-teal)));
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .gradient-text {
       background: linear-gradient(135deg, hsl(var(--automz-orange)), hsl(var(--automz-teal)));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }

   .nav-links {
       display: flex;
       gap: 2rem;
       align-items: center;
   }

   .nav-link {
       color: hsl(var(--foreground));
       text-decoration: none;
       font-weight: 500;
       transition: color 0.3s ease;
       cursor: pointer;
   }

   .nav-link:hover {
       color: hsl(var(--automz-orange));
   }

   .btn {
       background: hsl(var(--primary));
       color: hsl(var(--foreground));
       border: none;
       padding: 0.75rem 1.5rem;
       border-radius: 0.5rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
   }

   .btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 0 40px hsl(var(--automz-orange) / 0.3);
   }

   .btn-outline {
       background: transparent;
       border: 2px solid hsl(var(--automz-teal));
       color: hsl(var(--automz-teal));
   }

   .btn-outline:hover {
       background: hsl(var(--automz-teal));
       color: hsl(var(--foreground));
   }

   /* Hero Section */
   .hero {
       min-height: 100vh;
       background: linear-gradient(135deg, hsl(var(--automz-dark)) 0%, hsl(var(--automz-darker)) 100%);
       position: relative;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 2rem;
   }

   .hero::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: radial-gradient(circle, hsl(var(--automz-orange) / 0.1) 0%, transparent 70%);
       animation: rotate 20s linear infinite;
   }

   .geometric-shape {
       position: absolute;
       background: hsl(var(--automz-orange));
       opacity: 0.2;
       transform: rotate(45deg);
       animation: float 6s ease-in-out infinite;
   }

   .shape-1 {
       top: 10%;
       left: 10%;
       width: 64px;
       height: 64px;
   }

   .shape-2 {
       bottom: 20%;
       right: 10%;
       width: 48px;
       height: 48px;
       background: hsl(var(--automz-teal));
       opacity: 0.3;
       animation-delay: 2s;
   }

   .shape-3 {
       top: 50%;
       left: 25%;
       width: 32px;
       height: 32px;
       opacity: 0.1;
       animation-delay: 4s;
   }

   .hero-content {
       position: relative;
       z-index: 10;
       max-width: 800px;
       margin-top: 100px;
   }

   .hero-content p {
       text-align: justify;
       margin-top: 15px;
   }

   .hero h1 {
       font-size: clamp(3rem, 8vw, 6rem);
       font-weight: 800;
       margin-bottom: 2rem;
       text-shadow: 0 2px 10px hsl(var(--automz-darker) / 0.5);
   }

   .hero p {
       font-size: 1.25rem;
       color: hsl(var(--muted-foreground));
       margin-bottom: 3rem;
       max-width: 600px;
       margin-left: auto;
       margin-right: auto;
   }

   .hero-buttons {
       display: flex;
       gap: 1rem;
       justify-content: center;
       flex-wrap: wrap;
       margin-bottom: 4rem;
   }

   .feature-cards {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       max-width: 800px;
       margin: 0 auto;
   }

   .feature-card {
       background: hsla(var(--card), 0.5);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 2rem;
       text-align: center;
       transition: transform 0.3s ease;
   }

   .feature-card:hover {
       transform: translateY(-8px);
   }

   .feature-icon {
       width: 48px;
       height: 48px;
       margin: 0 auto 1rem;
       color: hsl(var(--automz-orange));
   }

   .feature-card:nth-child(1) .feature-icon,
   .feature-card:nth-child(4) .feature-icon {
       color: hsl(var(--automz-teal));
   }

   /* Services Section */
   .services {
       padding: 5rem 0;
       background: hsl(var(--automz-gray));
   }

   .section-header {
       text-align: center;
       margin-bottom: 4rem;
   }

   .section-header h2 {
       font-size: clamp(2.5rem, 6vw, 4rem);
       font-weight: 700;
       margin-bottom: 1.5rem;
   }

   .section-header p {
       font-size: 1.25rem;
       color: hsl(var(--muted-foreground));
       max-width: 600px;
       margin: 0 auto;
   }

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

   .service-card {
       background: hsla(var(--card), 0.8);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 2rem;
       transition: all 0.3s ease;
   }

   .service-card:hover {
       border-color: hsl(var(--automz-orange) / 0.5);
       transform: translateY(-4px);
   }

   .service-icon {
       width: 32px;
       height: 32px;
       margin-bottom: 1rem;
   }

   .service-card:nth-child(odd) .service-icon {
       color: hsl(var(--automz-teal));
   }

   .service-card:nth-child(even) .service-icon {
       color: hsl(var(--automz-orange));
   }

   .service-card h3 {
       font-size: 1.25rem;
       font-weight: 600;
       margin-bottom: 1rem;
   }

   .service-card p {
       color: hsl(var(--muted-foreground));
   }

   /* About Section */
   .about {
       padding: 5rem 0;
       background: hsl(var(--background));
   }

   .about-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: center;
   }

   @media (max-width: 768px) {
       .about-content {
           grid-template-columns: 1fr;
           gap: 2rem;
       }
   }

   .about-text h2 {
       font-size: clamp(2.5rem, 6vw, 4rem);
       font-weight: 700;
       margin-bottom: 1.5rem;
   }

   .about-text p {
       font-size: 1.25rem;
       color: hsl(var(--muted-foreground));
       margin-bottom: 2rem;
   }

   .features-list {
       list-style: none;
       margin-bottom: 2rem;
   }

   .features-list li {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       margin-bottom: 1rem;
   }

   .check-icon {
       width: 20px;
       height: 20px;
       color: hsl(var(--automz-teal));
   }

   .stats-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 2rem;
   }

   .stat-card {
       background: hsla(var(--card), 0.5);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 2rem;
       text-align: center;
       transition: transform 0.3s ease;
   }

   .stat-card:hover {
       transform: scale(1.05);
   }

   .stat-number {
       font-size: 3rem;
       font-weight: 700;
       background: linear-gradient(135deg, hsl(var(--automz-orange)), hsl(var(--automz-teal)));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       margin-bottom: 0.5rem;
   }

   .stat-label {
       color: hsl(var(--muted-foreground));
   }

   /* Contact Section */
   .contact {
       padding: 5rem 0;
       background: linear-gradient(135deg, hsl(var(--automz-dark)) 0%, hsl(var(--automz-darker)) 100%);
       position: relative;
       overflow: hidden;
   }

   .contact::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -50%;
       width: 200%;
       height: 200%;
       background: radial-gradient(circle, hsl(var(--automz-teal) / 0.1) 0%, transparent 70%);
       animation: rotate 30s linear infinite reverse;
   }

   .contact-content {
       position: relative;
       z-index: 10;
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: start;
   }

   @media (max-width: 768px) {
       .contact-content {
           grid-template-columns: 1fr;
           gap: 2rem;
       }
   }

   .contact-form {
       background: hsla(var(--card), 0.8);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 2rem;
   }

   .form-group {
       margin-bottom: 1.5rem;
   }

   .form-group label {
       display: block;
       margin-bottom: 0.5rem;
       font-weight: 500;
   }

   .form-control {
       width: 100%;
       background: hsl(var(--automz-gray));
       border: 1px solid hsl(var(--border));
       border-radius: 0.5rem;
       padding: 0.75rem;
       color: hsl(var(--foreground));
       font-family: inherit;
   }

   .form-control:focus {
       outline: none;
       border-color: hsl(var(--automz-orange));
   }

   textarea.form-control {
       resize: vertical;
       min-height: 100px;
   }

   .contact-info {
       display: flex;
       flex-direction: column;
       gap: 2rem;
   }

   .contact-card {
       background: hsla(var(--card), 0.5);
       -webkit-backdrop-filter: blur(12px);
       backdrop-filter: blur(12px);
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 1.5rem;
       display: flex;
       align-items: center;
       gap: 1rem;
       transition: transform 0.3s ease;
   }

   .contact-card:hover {
       transform: scale(1.05);
   }

   .contact-icon {
       width: 48px;
       height: 48px;
       background: hsl(var(--automz-orange) / 0.2);
       border-radius: 0.75rem;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .contact-card:nth-child(even) .contact-icon {
       background: hsl(var(--automz-teal) / 0.2);
   }

   .consultation-card {
       background: linear-gradient(45deg, hsl(var(--automz-orange) / 0.1), hsl(var(--automz-teal) / 0.1));
       border: 1px solid hsl(var(--border));
       border-radius: 1rem;
       padding: 2rem;
   }

   /* Footer */
   .footer {
       background: hsl(var(--automz-darker));
       border-top: 1px solid hsl(var(--border));
       padding: 3rem 0 1rem;
   }

   .footer-content {
       display: grid;
       grid-template-columns: 2fr 1fr 1fr;
       gap: 3rem;
   }

   @media (max-width: 768px) {
       .footer-content {
           grid-template-columns: 1fr;
           gap: 2rem;
       }
   }

   .footer-links {
       list-style: none;
   }

   .footer-links li {
       margin-bottom: 0.5rem;
   }

   .footer-links a {
       color: hsl(var(--muted-foreground));
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .footer-links a:hover {
       color: hsl(var(--automz-orange));
   }

   .social-links {
       display: flex;
       gap: 1rem;
       margin-top: 1rem;
   }

   .social-link {
       width: 40px;
       height: 40px;
       background: hsl(var(--automz-gray));
       border-radius: 0.75rem;
       display: flex;
       align-items: center;
       justify-content: center;
       color: hsl(var(--foreground));
       text-decoration: none;
       transition: background 0.3s ease;
   }

   .social-link:hover {
       background: hsl(var(--automz-orange));
   }

   .footer-bottom {
       border-top: 1px solid hsl(var(--border));
       margin-top: 3rem;
       padding-top: 2rem;
       text-align: center;
       color: hsl(var(--muted-foreground));
   }

   /* Mobile Menu */
   .mobile-menu-btn {
       display: none;
       background: none;
       border: none;
       color: hsl(var(--foreground));
       font-size: 1.5rem;
       cursor: pointer;
   }

   @media (max-width: 768px) {
       .nav-links {
           display: none;
       }

       .mobile-menu-btn {
           display: block;
       }

       .nav-links.mobile-open {
           display: flex;
           position: absolute;
           top: 100%;
           left: 0;
           right: 0;
           background: hsla(var(--background), 0.95);
           -webkit-backdrop-filter: blur(12px);
           backdrop-filter: blur(12px);
           flex-direction: column;
           padding: 2rem;
           border-top: 1px solid hsl(var(--border));
       }
   }

   /* Animations */
   @keyframes rotate {
       from {
           transform: rotate(0deg);
       }

       to {
           transform: rotate(360deg);
       }
   }

   @keyframes float {

       0%,
       100% {
           transform: translateY(0px) rotate(45deg);
       }

       50% {
           transform: translateY(-20px) rotate(45deg);
       }
   }

   /* Utility Classes */
   .section {
       padding: 5rem 0;
   }

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

   .mb-4 {
       margin-bottom: 1rem;
   }

   .mb-8 {
       margin-bottom: 2rem;
   }

   .mt-4 {
       margin-top: 1rem;
   }

   .mt-8 {
       margin-top: 2rem;
   }

   .main-title {
       text-align: center;
       font-size: 1.25rem;
       color: hsl(var(--muted-foreground));
       margin-bottom: 3rem;
       max-width: 600px;
       margin: 0 auto;
       margin-bottom: 30px;
   }

   .shadow-glow {
       --tw-shadow: var(--shadow-glow);
       --tw-shadow-colored: var(--shadow-glow);
       box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
   }

   .bg-gradient-tech {
       background-image: var(--gradient-tech);
   }

   .title-up {
       border-radius: 50%;
   }