/* CSS Variables */
:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #F59F0A;
  --secondary-foreground: #111827;
  --accent: #16A249;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #64748b;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.75rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem 0;
}

/* Text Utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }

/* Icons */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 3rem; height: 3rem; }

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--muted);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-outline-white {
  border-color: white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* 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;
}

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

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

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

.form-input:focus {
  outline: none;
  border-color: var(--ring);
}

.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: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

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

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

.success-content p {
  margin: 0;
  color: var(--accent-foreground);
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

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

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

.nav-desktop a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

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

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

.fusiontrixproae_mobile-menu a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.fusiontrixproae_mobile-menu a:hover,
.fusiontrixproae_mobile-menu a.active {
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .fusiontrixproae_mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1.125rem;
  }
}

/* Sections */
section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

/* Newsletter Section */
.newsletter-section {
  background: var(--muted);
  padding: 4rem 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.newsletter-text p {
  color: var(--muted-foreground);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  min-width: 300px;
}

.newsletter-input {
  flex: 1;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    width: 100%;
    min-width: auto;
  }
}

/* Partner Logos */
.partner-logos {
  background: var(--background);
  padding: 4rem 0;
  text-align: center;
}

.partner-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

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

/* Feature Cards */
.features-section {
  background: var(--background);
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.feature-card.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 16px 32px rgba(0,0,0,0.08);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 2rem;
  color: var(--card-foreground);
}

.feature-content h3 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

.feature-content p {
  color: var(--muted-foreground);
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.gallery-item.animation-hide {
  
  transform: translateX(40px);
  opacity: 1;
}

.gallery-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin: 0 0 0.5rem 0;
  color: white;
}

.gallery-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

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

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

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

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* Stats Section */
.stats-section {
  background: var(--muted);
}

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

.stat-item {
  text-align: center;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.stat-item.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

.stat-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0 0.5rem 0;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
}

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

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

.process-step {
  text-align: center;
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.process-step.animation-hide {
  
  transform: translateX(40px);
  opacity: 1;
}

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

.step-number {
  position: absolute;
  top: -1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step h3 {
  margin: 2rem 0 1rem 0;
  color: var(--foreground);
}

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

/* Testimonials */
.testimonials-section {
  background: var(--muted);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  color: var(--card-foreground);
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.testimonial-card.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

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

.testimonial-card.active {
  display: block;
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--card-foreground);
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.9;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

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

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

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.service-card.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 16px 32px rgba(0,0,0,0.08);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
  color: var(--card-foreground);
}

.service-content h3 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--card-foreground);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Accordion */
.accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.accordion-item.animation-hide {
  
  transform: translateX(40px);
  opacity: 1;
}

.accordion-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--card);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: var(--muted);
}

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

.accordion-title h3 {
  margin: 0;
  color: var(--card-foreground);
}

.accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

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

.accordion-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-text li {
  padding: 0.5rem 0;
  color: var(--foreground);
  position: relative;
  padding-left: 1.5rem;
}

.accordion-text li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fusiontrixproae_contact-form-container h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.fusiontrixproae_contact-form-container p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.fusiontrixproae_contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.contact-info-container h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--foreground);
}

.contact-content p {
  margin: 0 0 0.25rem 0;
  color: var(--foreground);
}

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

.contact-content a:hover {
  text-decoration: underline;
}

.contact-content small {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.business-hours {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.business-hours h3 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  color: var(--foreground);
}

.additional-contacts {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.additional-contacts h3 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.support-content strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.support-content a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.support-content a:hover {
  text-decoration: underline;
}

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

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

.faq-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-intro h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.faq-intro p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.faq-item.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

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

.faq-question:hover {
  background: var(--muted);
}

.faq-question h4 {
  margin: 0;
  color: var(--card-foreground);
  flex: 1;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

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

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

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-contact-cta {
  background: var(--muted);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 4rem;
}

.faq-contact-cta h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

/* Pricing Page */
.pricing-intro {
  background: var(--muted);
  padding: 4rem 0;
  text-align: center;
}

.intro-content h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.intro-content p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-section {
  background: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.pricing-card.animation-hide {
  
  transform: translateX(40px);
  opacity: 1;
}

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

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 16px 32px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.plan-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.pricing-features h4 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--card-foreground);
}

.pricing-footer {
  margin-top: auto;
}

.pricing-cta {
  margin-bottom: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* About Page */
.company-story {
  background: var(--background);
}

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

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

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

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.mission-card h3 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

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

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

.values-grid h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.value-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.value-card.animation-hide {
  
  transform: translateX(-40px);
  opacity: 1;
}

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

.value-card:hover {
  transform: translateY(-4px);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

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

.team-section {
  background: var(--muted);
}

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

.team-member {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.team-member.animation-hide {
  
  transform: translateX(40px);
  opacity: 1;
}

.team-member.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.member-avatar {
  margin-bottom: 1rem;
}

.member-info h3 {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.member-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-img {
    height: 300px;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
}

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

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

.legal-content .last-updated {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

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

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--foreground);
  line-height: 1.7;
}

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

.legal-content a:hover {
  text-decoration: underline;
}

.contact-details {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-details p:last-child {
  margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
  color: var(--foreground);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Cookie Consent */
.fusiontrixproae_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  z-index: 10000;
  padding: 1rem 0;
}

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

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

.fusiontrixproae_cookie-banner-text p {
  margin: 0;
  color: var(--card-foreground);
}

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

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

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

.fusiontrixproae_cookie-modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

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

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

.fusiontrixproae_cookie-toggle-row p {
  margin: 0;
  color: var(--card-foreground);
}

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

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

@media (max-width: 768px) {
  .fusiontrixproae_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .fusiontrixproae_cookie-banner-text {
    min-width: auto;
    text-align: center;
  }
  
  .fusiontrixproae_cookie-banner-actions {
    justify-content: center;
  }
  
  .fusiontrixproae_cookie-modal-actions {
    justify-content: center;
  }
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

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

.contact-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}

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

/* Animation Classes */
.animation-hide {
  opacity: 1;
  
}

.animate-in {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  section {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    min-height: 60vh;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* === 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 */
#fusiontrixproae_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#fusiontrixproae_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#fusiontrixproae_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }

/* ============================================
   FUSIONTRIXPROAE — REPAIR PATCH
   ============================================ */

/* 1. Animation-hide — НЕ прятать содержимое (opacity должна быть 1) */
.animation-hide { opacity: 1 !important; }

/* 2. CTA section — фон var(--primary) = серый, текст белый — ок,
   но contact-cta на about.html наследует белый bg → текст нечитаем */
.contact-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0;
  text-align: center;
}
.contact-cta .cta-content h2,
.contact-cta .cta-content p { color: var(--primary-foreground); }
.contact-cta .btn-outline { border-color: #fff; color: #fff; }
.contact-cta .btn-outline:hover { background: #fff; color: var(--primary); }

/* 3. Mobile toggle — скрыт на десктопе */
.fusiontrixproae_mobile-menu-toggle { display: none !important; }
@media (max-width: 767px) {
  .fusiontrixproae_mobile-menu-toggle { display: flex !important; align-items: center; justify-content: center; }
}

/* 4. pricing-card.featured — убрать scale (перекрывает соседей) */
.pricing-card.featured { transform: none; border: 2px solid var(--primary); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.pricing-card.featured:hover { transform: translateY(-4px); }
.popular-badge { position: static !important; transform: none !important; display: inline-block !important; margin-bottom: 1rem; }

/* === ABOUT PAGE — отсутствующие классы === */

/* Achievements Section */
.achievements-section { background: var(--muted); }
.achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .achievements-grid { grid-template-columns: 1fr; } }
.achievement-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.achievement-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.achievement-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.achievement-content h3 { color: var(--card-foreground); margin: 0; font-size: 1.125rem; }
.achievement-content p { color: var(--muted-foreground); margin: 0; font-size: 0.9rem; }

/* Why Choose Us Section */
.why-choose-us { background: var(--background); }
.choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .choose-content { grid-template-columns: 1fr; gap: 2rem; } }
.choose-text { display: flex; flex-direction: column; gap: 0.5rem; }
.choose-text h2 { margin-bottom: 1.5rem; color: var(--foreground); }
.choose-reasons { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.reason-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.reason-content h4 { margin: 0 0 0.4rem 0; color: var(--foreground); font-size: 1rem; }
.reason-content p { margin: 0; color: var(--muted-foreground); font-size: 0.9rem; }
.choose-image { border-radius: var(--radius); overflow: hidden; }
.choose-img { width: 100%; height: 450px; object-fit: cover; display: block; }

/* icon-box в светлой теме — иконки цвет primary */
.icon-box { color: var(--primary); }
.icon-box i, .icon-box svg { color: var(--primary) !important; }
