/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #f59e0b;
  --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: 'Inter', sans-serif;
  --radius: 0.75rem;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}

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

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;
  color: var(--foreground);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Icons */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

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

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

.btn-primary:hover {
  background: var(--secondary);
  border-bottom-color: var(--secondary);
  color: var(--secondary-foreground);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  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;
}

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

.nav-brand .logo-img {
  height: 40px;
  width: auto;
}

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

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

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

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

.signaluxis_mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.signaluxis_mobile-menu a {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

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

.hero-main-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
  padding: 5rem 0 3rem;
  background: var(--muted);
  text-align: center;
}

.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;
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--muted);
}

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

.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;
}

/* Cards */
.card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  padding: 1.5rem;
  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;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 16px 40px rgba(0,0,0,0.1);
}

/* Pricing Cards */
.pricing-preview {
  background: var(--background);
}

.pricing-cards {
  margin-top: 3rem;
}

.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);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

.pricing-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  color: var(--primary);
  flex-shrink: 0;
}

/* Benefits Section */
.benefits-grid {
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

/* Process Steps */
.process-grid {
  margin-top: 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
}

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

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

.step-image {
  margin-top: 1rem;
}

.step-image img {
  border-radius: var(--radius);
  width: 100%;
  max-width: 300px;
}

/* Team Section */
.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.team-stats {
  margin: 2rem 0;
}

.team-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-icon {
  flex-shrink: 0;
}

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

.stat-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

/* Gallery Section */
.gallery-grid {
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  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;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.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-bottom: 0.5rem;
  color: white;
}

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

/* Stats Counter */
.stats-counter {
  background: var(--muted);
}

.stats-grid {
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

/* CTA Section */
.cta {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.cta-text {
  text-align: center;
  color: var(--primary-foreground);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

/* Service Sections */
.service-section {
  padding: 5rem 0;
}

.service-section.alt-bg {
  background: var(--muted);
}

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

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-text {
  padding: 2rem 0;
}

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

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

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

.service-features {
  margin-bottom: 2rem;
}

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

/* Service Categories */
.service-categories {
  background: var(--background);
}

.categories-grid {
  margin-top: 3rem;
}

.category-card {
  text-align: center;
  padding: 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);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card.featured {
  border: 2px solid var(--primary);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

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

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-tag {
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

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

.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 {
  background: #10B981;
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1.5rem;
}

.success-message h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.success-message p {
  margin: 0;
  color: white;
  .9;
}

.success-icon {
  margin-bottom: 1rem;
  color: white;
}

/* Contact Page Specific */
.contact-section {
  padding: 5rem 0;
}

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

.signaluxis_contact-form-container {
  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);
}

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

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

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

.contact-info-card {
  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-card h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

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

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

.detail-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

.detail-content a:hover {
  color: var(--primary);
}

.contact-support-card {
  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-support-card h3 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

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

.support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.support-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.support-link h4 {
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.support-link a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.support-link a:hover {
  color: var(--primary);
}

/* Location Section */
.location-section {
  background: var(--muted);
  padding: 5rem 0;
}

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

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

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

.location-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-feature .feature-icon {
  color: var(--primary);
}

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

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

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

.map-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-grid {
  margin-top: 3rem;
}

.faq-item {
  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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

/* About Page Specific */
.company-story {
  padding: 5rem 0;
}

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

.story-text h2 {
  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.15);
}

.mission-values {
  background: var(--muted);
  padding: 5rem 0;
}

.mission-content {
  text-align: center;
  margin-bottom: 3rem;
}

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

.mission-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

.values-grid {
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

/* Timeline */
.company-timeline {
  padding: 5rem 0;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-year {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
}

.timeline-content {
  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);
}

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

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

/* Team Section */
.team-section {
  background: var(--muted);
  padding: 5rem 0;
}

.team-grid {
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

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

.team-member p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Company Achievements */
.company-achievements {
  padding: 5rem 0;
}

.achievements-grid {
  margin-top: 3rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.achievement-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

/* Location and Contact */
.location-contact {
  background: var(--muted);
  padding: 5rem 0;
}

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

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

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

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.detail-item span,
.detail-item a {
  color: var(--muted-foreground);
}

.detail-item a:hover {
  color: var(--primary);
}

/* Pricing Page Specific */
.pricing-section {
  padding: 5rem 0;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 3rem;
}

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

.pricing-intro p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.plan-description {
  margin-bottom: 2rem;
}

.plan-description p {
  color: var(--muted-foreground);
}

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

.feature-list {
  margin-bottom: 2rem;
}

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

.pricing-note {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Feature Comparison */
.feature-comparison {
  background: var(--muted);
  padding: 5rem 0;
}

.comparison-table {
  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);
  margin-top: 3rem;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem;
  font-weight: 600;
}

.table-section h4 {
  grid-column: 1 / -1;
  background: var(--muted);
  color: var(--foreground);
  padding: 1rem;
  margin: 0;
  font-size: 1rem;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  align-items: center;
}

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

.feature-name {
  color: var(--foreground);
  font-weight: 500;
}

.plan-feature {
  text-align: center;
  color: var(--muted-foreground);
}

.check-icon {
  color: #10B981;
}

.x-icon {
  color: #EF4444;
}

/* Pricing FAQ */
.pricing-faq {
  padding: 5rem 0;
}

/* Value Proposition */
.value-proposition {
  background: var(--muted);
  padding: 5rem 0;
}

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

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

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

.value-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

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

/* Blog Page Specific */
.featured-article {
  padding: 5rem 0;
}

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

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-date {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.article-category {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

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

/* Blog Articles */
.blog-articles {
  background: var(--muted);
  padding: 5rem 0;
}

.articles-grid {
  margin-top: 3rem;
}

.article-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;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.article-content {
  padding: 1.5rem;
}

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

.article-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 0;
}

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

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

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

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

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

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

/* Industry Topics */
.industry-topics {
  background: var(--muted);
  padding: 5rem 0;
}

.topics-grid {
  margin-top: 3rem;
}

.topic-card {
  text-align: center;
  padding: 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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

.topic-stats {
  color: var(--primary);

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  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 */
#signaluxis_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#signaluxis_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#signaluxis_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
