/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #16a34a;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.5rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-lg {
  font-size: 1.125rem;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

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

.text-sm {
  font-size: 0.875rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-outline:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Form Elements */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--input);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--background);
  color: var(--foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Success Message */
.success-message {
  background: rgba(22, 163, 74, 0.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--foreground);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
}

.success-message h3 {
  color: var(--foreground);
  margin: 0;
}

.success-message p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Icons */
.icon-box {
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Header and Navigation */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  padding: 1rem 0;
}

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

.nav-logo .logo-img {
  height: 2.5rem;
  width: auto;
}

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

.nav-link {
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.systemproluxis_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.systemproluxis_mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.mobile-nav-link {
  font-weight: 500;
  color: var(--foreground);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .systemproluxis_mobile-menu-toggle {
    display: block;
  }
  
  .systemproluxis_mobile-menu:not(.hidden) {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: var(--background);
  color: var(--foreground);
  padding: 7rem 0;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Page Header */
.page-header {
  background: var(--background);
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

/* Section Styling */
section {
  padding: 7rem 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

/* Process Steps */
.process-steps {
  background: var(--background);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.process-step.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.process-step:nth-child(even) {
  transform: translateX(40px);
}

.process-step:nth-child(even).animate-in {
  transform: translateX(0);
}

.process-step:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--foreground);
}

.process-step p {
  color: var(--muted-foreground);
}

/* Newsletter */
.newsletter {
  background: var(--background);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}

.newsletter-form .form-input {
  flex: 1;
}

@media (max-width: 768px) {
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

/* Partner Logos */
.partner-logos {
  background: var(--background);
}

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

.partner-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.03);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.partner-icon {
  width: 3rem;
  height: 3rem;
  color: var(--secondary);
}

.partner-logo span {
  font-weight: 500;
  color: var(--foreground);
}

/* About Preview */
.about-preview {
  background: var(--background);
}

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

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Gallery Preview */
.gallery-preview {
  background: var(--background);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Features */
.features {
  background: var(--background);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.feature-card:nth-child(even) {
  transform: translateX(40px);
}

.feature-card:nth-child(even).animate-in {
  transform: translateX(0);
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--foreground);
}

.feature-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* FAQ Preview */
.faq-preview {
  background: var(--background);
}

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

.faq-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.faq-text > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.faq-items {
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.faq-item p {
  color: var(--muted-foreground);
}

.faq-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* CTA Section */
.cta {
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  margin: 2rem 0;
}

.cta-content {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Page */
.services-overview {
  background: var(--background);
  padding: 4rem 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.services-intro p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.services-list {
  background: var(--background);
  padding: 4rem 0;
}

.services-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-header {
  cursor: pointer;
  padding: 2rem;
  transition: background-color 0.3s ease;
}

.service-header:hover {
  background: rgba(139, 92, 246, 0.05);
}

.service-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-title h3 {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.service-item.active .accordion-icon {
  transform: rotate(45deg);
}

.service-content {
  display: none;
  padding: 0 2rem 2rem;
}

.service-item.active .service-content {
  display: block;
}

.service-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-description ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.service-description li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.service-pricing {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: var(--radius);
}

.service-pricing h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

.service-image img {
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .service-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-header {
    padding: 1.5rem;
  }
  
  .service-content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* About Page */
.mission-statement {
  background: var(--background);
  padding: 6rem 0;
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.mission-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.company-story {
  background: var(--background);
}

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

.story-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.story-text p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.story-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.values {
  background: var(--background);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.value-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.value-card:nth-child(even) {
  transform: translateX(40px);
}

.value-card:nth-child(even).animate-in {
  transform: translateX(0);
}

.value-card:hover {
  transform: scale(1.03);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--foreground);
}

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

.expertise {
  background: var(--background);
}

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

.expertise-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.expertise-text > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expertise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.expertise-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.expertise-details p {
  color: var(--muted-foreground);
}

.expertise-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achievements {
  background: var(--background);
}

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

.achievement-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.03);
}

.achievement-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--foreground);
}

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

.location-info {
  background: var(--background);
}

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

.location-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.location-text p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-item p {
  color: var(--muted-foreground);
  margin: 0;
}

.location-image img {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .story-content,
  .expertise-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-content h2 {
    font-size: 2rem;
  }
  
  .mission-text {
    font-size: 1.125rem;
  }
}

/* Contact Page */
.contact-main {
  background: var(--background);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.systemproluxis_contact-form-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.systemproluxis_contact-form-section > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.contact-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-card > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-details p {
  margin: 0;
  color: var(--foreground);
}

.contact-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: block;
  margin-top: 0.25rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.location-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.location-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.address-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.address-details p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.map-placeholder {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--border);
}

.map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-icon {
  width: 3rem;
  height: 3rem;
  color: var(--muted-foreground);
}

.map-content p {
  color: var(--muted-foreground);
  margin: 0;
}

.contact-additional {
  background: var(--background);
  padding: 4rem 0;
}

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

.contact-option {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.contact-option:hover {
  transform: scale(1.03);
}

.contact-option h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--foreground);
}

.contact-option p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

/* FAQ Page */
.faq-section {
  background: var(--background);
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.faq-intro p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list .faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.05);
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 2rem 2rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.faq-contact {
  background: var(--background);
  padding: 4rem 0;
}

.contact-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-cta-content > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-cta-content .contact-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-cta-content .contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  padding: 1rem;
  border: none;
  transition: none;
}

.contact-cta-content .contact-option:hover {
  transform: none;
}

.contact-cta-content .contact-option h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
}

.contact-cta-content .contact-option p {
  margin: 0;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .contact-cta-content .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Legal Content */
.legal-content {
  background: var(--background);
  padding: 4rem 0;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.last-updated {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  color: var(--foreground);
}

.legal-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

.legal-text p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.legal-text ul {
  margin: 1rem 0 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.legal-text strong {
  color: var(--foreground);
}

.cookie-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: rgba(139, 92, 246, 0.1);
  font-weight: 600;
  color: var(--foreground);
}

.cookie-table td {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: transparent;
  border-top: 1px solid var(--border);
  color: var(--foreground);
  padding: 4rem 0 2rem;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo .logo-img {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.footer-address {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-address p {
  margin: 0;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

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

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-column a {
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-column p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-legal-links a {
  display: inline;
  margin-right: 1rem;
}

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

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

/* Cookie Banner and Modal */
.systemproluxis_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.systemproluxis_cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.systemproluxis_cookie-banner-text {
  flex: 1;
}

.systemproluxis_cookie-banner-text p {
  margin: 0;
  color: var(--foreground);
  font-size: 0.875rem;
}

.systemproluxis_cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.systemproluxis_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.systemproluxis_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.systemproluxis_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.systemproluxis_cookie-modal-content {
  position: relative;
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-toggles {
  margin-bottom: 2rem;
}

.systemproluxis_cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.systemproluxis_cookie-toggle-row:last-child {
  border-bottom: none;
}

.systemproluxis_cookie-toggle-row input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
}

.systemproluxis_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .systemproluxis_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .systemproluxis_cookie-banner-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .systemproluxis_cookie-modal {
    padding: 1rem;
  }
  
  .systemproluxis_cookie-modal-content {
    padding: 1.5rem;
  }
  
  .systemproluxis_cookie-toggle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .systemproluxis_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#systemproluxis_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#systemproluxis_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#systemproluxis_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
