/* CSS Variables */
:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #F59F0A;
  --secondary-foreground: #111827;
  --accent: #DC2828;
  --accent-foreground: #FFFFFF;
  --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.5rem;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Utility Classes */
.text-primary {
  color: var(--primary);
}

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

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

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

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

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

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

/* Button Styles */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: inset 4px 4px 8px rgba(100, 116, 139, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

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

/* Icon Styles */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--muted);
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

/* Header and Navigation */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(100, 116, 139, 0.1);
}

.nav {
  padding: 1rem 0;
}

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

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

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

.datanovahubix_mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.datanovahubix_mobile-menu-inner {
  text-align: center;
}

.datanovahubix_mobile-menu-link {
  display: block;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.datanovahubix_mobile-menu-link:hover {
  color: var(--primary);
  background: var(--muted);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-image {
  position: relative;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero::before {
    display: none;
  }
}

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

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

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

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

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

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

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

/* Alternating Background Sections */
.features,
.about-preview,
.testimonials {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

.partner-logos,
.why-choose-us,
.process-steps {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.faq-preview,
.stats {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

/* Feature Cards */
.feature-card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(100, 116, 139, 0.2), -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.feature-content {
  padding: 2rem;
}

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

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

/* Partner Logos */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-item {
  text-align: center;
  padding: 1.5rem;
}

.partner-icon {
  margin-bottom: 0.5rem;
}

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

/* FAQ Preview */
.faq-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

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

.faq-preview-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.faq-preview-item h4 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.faq-preview-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

/* Advantage Items */
.advantage-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

/* About Preview */
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.about-preview-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

/* Stats Section */
.stat-item {
  text-align: center;
  padding: 2rem;
}

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

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

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

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

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

/* Testimonials */
.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

.testimonial-author h4 {
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

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

.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;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

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

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

.footer a {
  color: var(--primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

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

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

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

.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

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

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

/* Cookie Banner */
.datanovahubix_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  z-index: 10000;
  box-shadow: 0 -4px 16px rgba(100, 116, 139, 0.1);
}

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

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

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

.datanovahubix_cookie-banner-actions .btn-primary,
.datanovahubix_cookie-banner-actions .btn-outline {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

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

.datanovahubix_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  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);
}

/* Success Message */
.success-message {
  background: #10B981;
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 8px 8px 16px rgba(16, 185, 129, 0.2);
}

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

.success-content h3 {
  margin-bottom: 0;
}

.success-content p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* Services Page Styles */
.service-section {
  padding: 4rem 0;
}

.service-section.alt-bg {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

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

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

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

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

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

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.service-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .service-inner {
    grid-template-columns: 1fr;
  }
  
  .service-inner.reverse {
    direction: ltr;
  }
}

/* About Page Styles */
.company-story {
  padding: 4rem 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

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

.story-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.mission-values {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

.mission-card,
.values-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

.values-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-card li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.values-card li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.team-section {
  padding: 4rem 0;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

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

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

.achievements {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

.achievement-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

.company-culture {
  padding: 4rem 0;
}

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

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

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

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

.culture-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.culture-highlight .icon-box {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
}

.culture-highlight span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.culture-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.location-section {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

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

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

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

.location-details {
  display: grid;
  gap: 1.5rem;
}

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

.location-item .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}

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

.location-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.location-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .story-inner,
  .culture-inner,
  .location-inner {
    grid-template-columns: 1fr;
  }
  
  .culture-highlights {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-info-bar {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.contact-info-item .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}

.contact-info-item h4 {
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.datanovahubix_contact-form-section {
  padding: 4rem 0;
}

.datanovahubix_contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.datanovahubix_contact-form-header p {
  color: var(--muted-foreground);
}

.datanovahubix_contact-form {
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkmark {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.contact-methods {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

.office-info {
  padding: 4rem 0;
}

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

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

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

.office-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.office-detail .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}

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

.office-detail p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.office-note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-style: italic;
}

.office-image img {
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.response-time {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

.response-time-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.response-time-content p {
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.response-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.response-item .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
}

.response-item h4 {
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.response-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .office-inner {
    grid-template-columns: 1fr;
  }
  
  .datanovahubix_contact-form {
    padding: 2rem;
  }
}

/* FAQ Page Styles */
.faq-section {
  padding: 4rem 0;
}

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

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
  transition: background-color 0.3s ease;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  display: none;
}

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

.faq-answer p {
  margin-bottom: 1rem;
}

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

.faq-cta {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

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

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

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

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

.additional-resources {
  padding: 4rem 0;
}

.resource-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

/* Pricing Page Styles */
.pricing-plans {
  padding: 4rem 0;
}

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

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

.pricing-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

.pricing-comparison {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

.comparison-table {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}

.comparison-header {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 1rem;
}

.comparison-row {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

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

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

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

.addon-services {
  padding: 4rem 0;
}

.addon-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

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

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

.addon-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.addon-features li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

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

.addon-features li:last-child {
  border-bottom: none;
}

.pricing-faq {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 4rem 0;
}

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

.faq-grid .faq-item {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

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

.faq-grid .faq-item p {
  color: var(--muted-foreground);
  margin-bottom: 0;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .comparison-header {
    text-align: center;
  }
  
  .feature-value {
    text-align: left;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal Content Styles */
.legal-content {
  padding: 4rem 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px rgba(100, 116, 139, 0.15), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.legal-document h2 {
  color: var(--card-foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-document h3 {
  color: var(--card-foreground);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.legal-document ul {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

.legal-document a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-document a:hover {
  color: var(--accent);
}

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

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 4px 4px 8px rgba(100, 116, 139, 0.1);
}

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

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

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

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

@media (max-width: 768px) {
  .legal-document {
    padding: 2rem;
  }
  
  .cookie-table {
    font-size: 0.875rem;
  }
}

/* Animation Classes */
.animate-fade {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
  }
}

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

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  position: relative;
  z-index: 2;
}

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

/* ============================================
   DATANOVAHUBIX — REPAIR PATCH
   ============================================ */

/* 1. animate-fade — карточки ВСЕГДА видимы (opacity:0 убран из класса) */
.animate-fade { opacity: 1 !important; transform: none !important; }
.animate-fade.animate-in { opacity: 1 !important; transform: none !important; }

/* 2. Страховка для всех анимируемых элементов */
.feature-card, .advantage-item, .testimonial-card, .process-step,
.pricing-card, .team-member, .achievement-item, .stat-item,
.partner-item, .faq-item, .contact-method {
  opacity: 1 !important;
  transform: none !important;
}
/* Разрешаем hover-transform */
.feature-card:hover { transform: translateY(-4px) !important; }
.pricing-card:hover { transform: translateY(-4px) !important; }

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

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

/* 5. Icon-box цвет */
.icon-box { color: var(--primary); }
.icon-box i, .icon-box svg { color: var(--primary) !important; }

/* ============================================
   DATANOVAHUBIX — PATCH: btn-outline on dark bg
   ============================================ */

/* Hero — btn-outline белая на тёмном фоне */
.hero .btn-outline,
.hero-actions .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.hero .btn-outline:hover,
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
}

/* CTA — btn-outline белая на тёмном фоне */
.cta .btn-outline,
.cta-actions .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cta .btn-outline:hover,
.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
}
