<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main stylesheet for AI Business Automation website */

:root {
  --primary: #00F9FF;     /* Electric Turquoise */
  --secondary: #0D1B2A;   /* Dark Blue Metallic */
  --accent1: #C7FF00;     /* Lime Neon */
  --accent2: #FF5C00;     /* Bright Orange */
  --dark: #000000;
  --light: #FFFFFF;
  --glass-bg: rgba(13, 27, 42, 0.7);
  --glass-border: rgba(0, 249, 255, 0.3);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 40px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent1);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--accent2);
  color: var(--light);
}

.btn-secondary:hover {
  background: var(--accent1);
}

/* Glass effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

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

.logo {
  max-width: 150px;
}

.logo svg {
  height: 40px;
  fill: var(--primary);
  transition: all 0.3s ease;
}

.logo:hover svg {
  fill: var(--accent1);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--light);
  font-weight: 600;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 3.5rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  display: inline-block;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* About section */
.about {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services section */
.services {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 27, 42, 0.9) 100%);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 30px;
  background: var(--glass-bg);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 249, 255, 0.1);
  border-color: var(--primary);
}

.service-icon {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 2.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* How it works section */
.how-it-works {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step-line {
  position: absolute;
  top: 30px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: var(--primary);
}

.step:last-child .step-line {
  display: none;
}

/* Why us section */
.why-us {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 27, 42, 0.9) 100%);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 20px;
}

.feature-icon {
  color: var(--accent1);
  font-size: 2rem;
  flex-shrink: 0;
}

/* Pricing section */
.pricing {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-button {
  padding: 10px 20px;
  background: var(--glass-bg);
  color: var(--light);
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.tab-button:first-child {
  border-radius: 5px 0 0 5px;
}

.tab-button:last-child {
  border-radius: 0 5px 5px 0;
}

.tab-button.active {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-plan {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 40px 30px;
  background: var(--glass-bg);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 249, 255, 0.1);
  border-color: var(--primary);
}

.plan-name {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary);
}

.plan-price span {
  font-size: 1rem;
  color: var(--light);
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.plan-features li:before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--accent1);
}

.plan-cta {
  margin-top: 20px;
}

/* Testimonials section */
.testimonials {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 27, 42, 0.9) 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 30px;
  background: var(--glass-bg);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-name {
  font-weight: bold;
}

.author-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact section */
.contact {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.info-icon {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  color: var(--light);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

/* Footer */
footer {
  background: var(--secondary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo svg {
  height: 40px;
  fill: var(--primary);
}

.footer-description {
  margin-bottom: 20px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-text {
  flex: 3;
  min-width: 200px;
}

.cookie-buttons {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Responsive styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .step-line {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--secondary);
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .mobile-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .about-content, .contact-grid {
    flex-direction: column;
  }
  
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .pricing-plan, .service-card, .testimonial {
    min-width: 100%;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
} </pre></body></html>