/* CSS Variables */
:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #dc2626;
  --accent-foreground: #FFFFFF;
  --background: #0F172A;
  --foreground: #F8FAFC;
  --card: #1E293B;
  --card-foreground: #F8FAFC;
  --border: #334155;
  --input: #334155;
  --ring: #64748b;
  --muted: #1E293B;
  --muted-foreground: #94A3B8;
  --font-family: 'Roboto', sans-serif;
  --radius: 1rem;
}

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

body {
  font-family: var(--font-family);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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-bottom: 1rem;
}

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

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

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

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

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

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

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

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

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

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

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

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

.icon-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

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

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

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

.soliddatahubae_mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--background);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soliddatahubae_mobile-menu-content {
  text-align: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  isolation: isolate;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-foreground);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

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

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

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

.page-title {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.page-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

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

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

.section-title {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* Cards */
.feature-card, .service-card, .team-member-card, .pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover, .service-card:hover, .team-member-card:hover, .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.feature-content, .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-title, .service-title {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.feature-description, .service-description {
  color: var(--muted-foreground);
  flex: 1;
  margin-bottom: 1rem;
}

.service-features {
  margin: 1rem 0;
}

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

.service-features li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.service-features li:before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Advantages */
.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* About Preview */
.about-preview-section .grid-2 {
  align-items: center;
}

.about-content {
  order: 1;
}

.about-image {
  order: 2;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

@media (max-width: 768px) {
  .about-content {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

.stat-label {
  color: var(--foreground);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Process Steps */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* Testimonials */
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--card-foreground);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  color: var(--card-foreground);
  font-weight: 600;
}

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

/* Team Preview */
.member-avatar {
  text-align: center;
  margin-bottom: 1rem;
}

.member-info {
  text-align: center;
  flex: 1;
}

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

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

.member-description {
  color: var(--muted-foreground);
  flex: 1;
}

.team-cta {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  isolation: isolate;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  text-align: center;
}

.cta-title {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
.footer {
  background: var(--muted);
  color: var(--foreground);
  padding: 3rem 0 1rem;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

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

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

.footer-heading {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-contact-info {
  list-style: none;
  padding: 0;
}

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

.footer-contact-info a {
  color: var(--primary);
  font-size: 0.875rem;
}

.business-hours {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.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 {
  color: var(--foreground);
  font-size: 0.875rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
}

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

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

.success-message {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

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

.success-title {
  margin-bottom: 0.5rem;
}

.success-text {
  margin: 0;
}

/* Cookie Banner */
.soliddatahubae_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  z-index: 10000;
  padding: 1rem 0;
}

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

.soliddatahubae_cookie-banner-text {
  flex: 1;
  color: var(--card-foreground);
}

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

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

.soliddatahubae_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.soliddatahubae_cookie-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
}

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

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

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

.soliddatahubae_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .soliddatahubae_cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .soliddatahubae_cookie-banner-actions {
    justify-content: center;
  }
  
  .soliddatahubae_cookie-modal-actions {
    flex-direction: column;
  }
}

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

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

.legal-title {
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
  color: var(--foreground);
  margin: 1.5rem 0 1rem;
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

.contact-info 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(--muted);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

.service-category {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  height: 100%;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.service-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-name {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-title {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* About Page */
.company-story .grid-2 {
  align-items: center;
  gap: 3rem;
}

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

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

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

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

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0;
}

.timeline-year {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.timeline-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.timeline-title {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

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

/* Mission and Values */
.mission-values .grid-2 {
  gap: 3rem;
}

.mission-section, .values-section {
  text-align: center;
}

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

.values-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 1.5rem;
}

.values-list li {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.values-list strong {
  color: var(--foreground);
}

/* Benefits and Achievements */
.benefit-card, .achievement-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-title, .achievement-title {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.benefit-description, .achievement-description {
  color: var(--muted-foreground);
  flex: 1;
}

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

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.soliddatahubae_contact-form-section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.form-title {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

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

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

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

.map-placeholder {
  background: var(--muted);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

.map-content {
  text-align: center;
  color: var(--muted-foreground);
}

.map-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

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

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

.method-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details {
  flex: 1;
}

.method-title {
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

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

.additional-contacts {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.additional-title {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.additional-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

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

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

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

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

.response-title {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.response-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.response-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .response-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

/* FAQ Page */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(100, 116, 139, 0.1);
}

.question-text {
  color: var(--card-foreground);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  background: rgba(100, 116, 139, 0.1);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
}

.faq-cta-section {
  background: var(--muted);
  text-align: center;
}

/* Pricing Page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.popular {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-title {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

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

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

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

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

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

.pricing-cost {
  margin-bottom: 1.5rem;
}

.cost-label {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.cost-value {
  color: var(--card-foreground);
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-info-section .grid-2 {
  gap: 3rem;
  align-items: start;
}

.pricing-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.factors-title {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.factors-list {
  color: var(--muted-foreground);
  padding-left: 1.5rem;
}

.factors-list li {
  margin-bottom: 0.5rem;
}

.benefit-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.benefit-content {
  flex: 1;
}

.benefit-title {
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

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

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

.terms-subtitle {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.terms-list {
  color: var(--muted-foreground);
  padding-left: 1.5rem;
}

.terms-list li {
  margin-bottom: 0.5rem;
}

.custom-solutions-section {
  text-align: center;
}

.custom-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.custom-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.feature-text {
  font-weight: 500;
}

/* Team Page */
.team-intro-section {
  background: var(--muted);
}

.intro-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  height: 100%;
}

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

.expertise-title {
  color: var(--card-foreground);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.expertise-list li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

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

.approach-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3rem;
}

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

.approach-item {
  text-align: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

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

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

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

.values-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.value-title {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Animation Classes */
.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  section {
    padding: 3rem 0;
  }

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

}
.animate-fade, .animate-fade-in { opacity: 1 !important; transform: none !important; }

/* ============ soliddatahubae REPAIR PATCH (dark theme) ============ */

/* Mobile toggle */
[class*="mobile-menu-toggle"]{display:none!important;}
@media(max-width:767px){[class*="mobile-menu-toggle"]{display:flex!important;align-items:center;justify-content:center;}}

/* Nav (dark theme) */
.nav-brand{display:flex;align-items:center;gap:.5rem;text-decoration:none;font-weight:700;color:var(--foreground);}
.nav-links{display:flex;align-items:center;gap:1.5rem;}
.nav-links a{text-decoration:none;color:var(--foreground);font-weight:500;transition:color .2s;}
.nav-links a:hover{color:var(--primary);}

/* Icon-box (dark theme) */
.icon-box{background:rgba(100,116,139,.2);color:#fff;}
.icon-box i,.icon-box svg{color:#fff!important;stroke:#fff!important;}

/* Section padding for all named sections */
.features-section,.advantages-section,.process-section,.testimonials-section,
.faq-section,.pricing-section,.team-preview-section,.team-members-section,
.contact-section,.contact-info-section{padding:5rem 0;}
.advantages-section,.testimonials-section,.faq-section{background:var(--muted);}

/* Content blocks */
.intro-content{display:flex;flex-direction:column;gap:1rem;max-width:700px;margin:0 auto;text-align:center;}
.cta-content{text-align:center;max-width:700px;margin:0 auto;}
.cta-content h2{color:#fff;margin-bottom:1rem;}
.cta-content p{color:rgba(255,255,255,.85);margin-bottom:2rem;}

/* Story / approach */
.story-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
@media(max-width:768px){.story-content{grid-template-columns:1fr;}}
.approach-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
@media(max-width:768px){.approach-content{grid-template-columns:1fr;}}

/* Detailed services */
.detailed-services{padding:5rem 0;background:var(--muted);}
.service-process{display:flex;flex-direction:column;gap:1rem;}

/* Timeline */
.company-timeline{display:flex;flex-direction:column;gap:0;position:relative;padding-left:2.5rem;border-left:2px solid var(--border);}

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

/* Pricing */
.pricing-benefits{display:flex;flex-direction:column;gap:.75rem;margin-top:1rem;}
.pricing-details{display:flex;flex-direction:column;gap:.5rem;}
.pricing-factors{display:flex;flex-direction:column;gap:.5rem;}
.terms-column{display:flex;flex-direction:column;gap:.5rem;}

/* FAQ */
.faq-section .faq-item{background:var(--card);border:1px solid var(--border);}

/* Author */
.author-info{display:flex;flex-direction:column;gap:.25rem;}
.author-info strong{color:var(--foreground);}
.author-info span{color:var(--muted-foreground);font-size:.875rem;}

/* Contact */
.contact-info-section{display:flex;flex-direction:column;gap:1.5rem;}

/* Map */
.map-text{display:flex;flex-direction:column;gap:.5rem;}

/* Custom content */
.custom-content{display:flex;flex-direction:column;gap:1rem;}

/* Footer */
.footer-link{color:rgba(255,255,255,.65);text-decoration:none;font-size:.875rem;transition:color .2s;}
.footer-link:hover{color:#fff;}

/* Prose */
.prose{max-width:65ch;line-height:1.75;}
.prose p{margin-bottom:1rem;color:var(--foreground);}
.prose h2{font-size:1.5rem;margin:2rem 0 1rem;color:var(--foreground);}
.prose ul,.prose ol{margin-bottom:1rem;padding-left:1.5rem;}
.prose li{margin-bottom:.25rem;color:var(--foreground);}

/* Table */
.table-wrap{overflow-x:auto;margin:1.5rem 0;}
.table-full{width:100%;border-collapse:collapse;}
.table-head th{padding:.75rem 1rem;text-align:left;font-weight:600;background:var(--muted);border-bottom:1px solid var(--border);color:var(--foreground);}
.table-cell{padding:.75rem 1rem;border-bottom:1px solid var(--border);color:var(--foreground);}

/* Why choose */
.why-choose-us{padding:5rem 0;}

/* Pricing card featured */
.pricing-card.featured{transform:none!important;border:2px solid var(--primary);box-shadow:0 8px 32px rgba(0,0,0,.4);}
.pricing-badge{position:static!important;transform:none!important;display:inline-block!important;margin-bottom:1rem;}

/* ============ SOLIDDATA PATCH 2: section backgrounds + about ============ */

/* Named sections with padding */
.features-section { padding: 5rem 0; background: var(--card); }
.advantages-section { padding: 5rem 0; background: var(--muted); }
.about-preview-section { padding: 5rem 0; background: var(--card); }
.process-section { padding: 5rem 0; background: var(--muted); }
.testimonials-section { padding: 5rem 0; background: var(--card); }
.team-preview-section { padding: 5rem 0; background: var(--muted); }

/* About page */
.company-story { padding: 5rem 0; background: var(--card); }
.mission-values { padding: 5rem 0; background: var(--muted); }

/* Hero btn-primary на тёмном фоне */
.hero .btn-primary, .hero-actions .btn-primary {
  background: var(--secondary) !important;
  color: #111827 !important;
  border-color: var(--secondary) !important;
}
.hero .btn-primary:hover { opacity: 0.9; }
.hero .btn-outline, .hero-actions .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
}

/* === ANIMATION VISIBILITY FIX === */
.fade-in-up { opacity: 1 !important; transform: none !important; }
.fade-in-left { opacity: 1 !important; transform: none !important; }
.fade-in-right { opacity: 1 !important; transform: none !important; }
.fade-in-down { opacity: 1 !important; transform: none !important; }
.fade-in { opacity: 1 !important; transform: none !important; }
.slide-in-left { opacity: 1 !important; transform: none !important; }
.slide-in-right { opacity: 1 !important; transform: none !important; }
.animate-item { opacity: 1 !important; transform: none !important; }
.animate-fade { opacity: 1 !important; transform: none !important; }
.animate-fade-in { opacity: 1 !important; transform: none !important; }
.fade-in-element { opacity: 1 !important; transform: none !important; }

.cta-section { background: linear-gradient(135deg, var(--primary), var(--accent)) !important; color: var(--primary-foreground) !important; padding: 5rem 0 !important; }
.cta-section h2, .cta-section h3, .cta-section p { color: #fff !important; }

/* ============ SOLIDDATAHUBAE PATCH 3: nav + grid fix ============ */

/* nav-link — правильный размер */
.nav-link {
  font-size: 0.9rem !important;
  color: var(--foreground);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

/* nav-menu — всегда flex на десктопе */
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
  }
}

/* grid-3 — всегда 3 колонки на десктопе */
@media (min-width: 769px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* feature-card — правильный layout в тёмной теме */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.feature-title {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.05rem;
}
.feature-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============ SOLIDDATA PATCH 4: services fix ============ */

/* services-grid — 2 карточки в ряд нормально для 4 карточек */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr !important; }
}

/* service-card — нормальный card */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* service-image — DIV-контейнер для картинки */
.service-image {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  object-fit: unset !important; /* сброс — это DIV, не img */
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* service-content — текст под картинкой */
.service-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--card);
}
.service-title {
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.service-description {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
