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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

/* Header Styles */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.technonovaehubor_mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--foreground);
}

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

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

.technonovaehubor_mobile-menu-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.technonovaehubor_mobile-menu-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: var(--background);
  color: var(--foreground);
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.hero-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

section:nth-child(even) {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Card Styles */
.feature-card,
.service-card,
.pricing-card,
.team-card,
.portfolio-card,
.value-card,
.result-card,
.testimonial-card,
.achievement-card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.team-card:hover,
.portfolio-card:hover,
.value-card:hover,
.result-card:hover,
.testimonial-card:hover,
.achievement-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Styles */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-md {
  width: 24px;
  height: 24px;
  color: var(--primary-foreground);
}

.icon-lg {
  width: 32px;
  height: 32px;
  color: var(--primary-foreground);
}

/* Feature Cards */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-image {
  margin-bottom: 1rem;
}

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

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Pricing Cards */
.pricing-preview,
.pricing-plans {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

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

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

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

.pricing-badge {
  position: absolute;
  top: -12px;
  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-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.pricing-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

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

.features-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
}

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

.feature-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 7rem 0;
}

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

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

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

/* Process Steps */
.process-steps {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.process-step {
  text-align: center;
  position: relative;
}

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

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq-preview,
.pricing-faq {
  padding: 7rem 0;
}

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

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

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

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

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 7rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.cta-actions .btn-outline {
  background: transparent;
  color: var(--primary-foreground);
  border-color: var(--primary-foreground);
}

.cta-actions .btn-outline:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

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

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

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

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

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

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

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

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

/* About Page */
.company-story,
.expertise-section,
.location-section {
  padding: 7rem 0;
}

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

.story-paragraph {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.expertise-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expertise-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.location-details {
  margin-top: 2rem;
}

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

.location-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

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

/* Values Section */
.values-section,
.achievements-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.value-title,
.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-description,
.achievement-description {
  color: var(--muted-foreground);
}

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

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

.technonovaehubor_contact-form-title,
.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.technonovaehubor_contact-form-description,
.contact-info-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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(0, 0, 0, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.contact-info-list {
  list-style: none;
}

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

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-foreground);
}

.contact-info-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--muted-foreground);
}

.additional-contacts,
.company-details {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.additional-contacts-title,
.company-details-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.additional-contact-item,
.company-detail-item {
  margin-bottom: 0.5rem;
}

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

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

/* Team Page */
.team-intro,
.team-values {
  padding: 7rem 0;
}

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

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

.team-avatar {
  text-align: center;
  margin-bottom: 1.5rem;
}

.avatar-icon {
  width: 80px;
  height: 80px;
  color: var(--muted-foreground);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

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

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.join-team {
  padding: 7rem 0;
}

.join-team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.join-team-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.join-team-benefits {
  list-style: none;
}

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

.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.join-team-action {
  text-align: center;
}

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

/* Portfolio Page */
.portfolio-grid {
  padding: 7rem 0;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-image {
  position: relative;
  margin-bottom: 1.5rem;
}

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

.portfolio-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.portfolio-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
}

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

.highlight-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

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

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

.results-overview,
.client-testimonials {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

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

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

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

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

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

.success-icon {
  width: 48px;
  height: 48px;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.success-text {
  margin: 0;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #111827;
  color: #f9fafb;
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-tagline {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.footer-list {
  list-style: none;
}

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

.footer-list a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #f9fafb;
}

.footer-contact .contact-info {
  color: #d1d5db;
  font-size: 0.875rem;
}

.footer-contact .contact-info a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-contact .contact-info a:hover {
  color: #f9fafb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

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

/* Cookie Banner and Modal */
.technonovaehubor_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 9998;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.technonovaehubor_cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.technonovaehubor_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  white-space: nowrap;
}

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

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

.technonovaehubor_cookie-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

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

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

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

@media (max-width: 768px) {
  .technonovaehubor_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .technonovaehubor_cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .technonovaehubor_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

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

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

/* Cookie Policy Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

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

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

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

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

.pricing-card,
.feature-card,
.service-card,
.team-card,
.portfolio-card,
.value-card,
.result-card,
.testimonial-card,
.achievement-card,
.process-step {
  
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/* Focus States */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .technonovaehubor_cookie-banner,
  .technonovaehubor_cookie-modal {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
  
  .legal-content {
    max-width: none;
    margin: 0;
    padding: 0;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-image { /* alias for .hero-img */ }
.hero-image {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* === NTH-CHILD OVERRIDE: dark sections need !important === */
/* newsletter=4(even) on index, cta=8(even) on services */

.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: var(--primary-foreground) !important;
}

.newsletter-title {
  color: var(--primary-foreground) !important;
}

.newsletter-description {
  color: rgba(255,255,255,0.9) !important;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: var(--primary-foreground) !important;
}

.cta-title {
  color: var(--primary-foreground) !important;
}

.cta-description {
  color: rgba(255,255,255,0.9) !important;
}

.cta .btn-outline,
.newsletter .btn-outline {
  color: var(--primary-foreground) !important;
  border-color: var(--primary-foreground) !important;
}

.cta .btn-outline:hover,
.newsletter .btn-outline:hover {
  background: var(--primary-foreground) !important;
  color: var(--primary) !important;
}

/* === MISSING CSS CLASSES === */

/* Layout content wrappers */
.cta-content { text-align: center; }
.page-header-content { text-align: center; }
.newsletter-text { margin-bottom: 1.5rem; }
.value-proposition { }
.pricing-footer { text-align: center; margin-top: 2rem; }

/* Story section */
.story-text, .story-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

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

.story-img {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}

.story-image img,
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Expertise section */
.expertise-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.expertise-image, .expertise-img {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.expertise-image img, .expertise-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.expertise-item-content h3 { margin-bottom: 0.5rem; }
.expertise-item-content p { color: var(--muted-foreground); margin: 0; }
.expertise-description { color: var(--muted-foreground); }

/* Location section */
.location-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-image, .location-img {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.location-image img, .location-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

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

/* Service section images */
.service-image {
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

/* Join team */
.join-team-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-team-image, .join-team-img {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.join-team-image img, .join-team-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Portfolio content */
.portfolio-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Result cards */
.result-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

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

/* Testimonials */
.testimonial-author { margin-top: 1.5rem; }
.author-info h4 { margin-bottom: 0.25rem; color: var(--foreground); }
.author-info p { color: var(--muted-foreground); margin: 0; font-size: 0.875rem; }

/* Benefits */
.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-card h3 { margin: 0; font-size: 1.125rem; }
.benefit-card p { color: var(--muted-foreground); margin: 0; font-size: 0.9rem; }

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

.contact-info-content h3 { margin-bottom: 0.5rem; }
.contact-info-content p { color: var(--muted-foreground); margin: 0; font-size: 0.9rem; }

/* Team info */
.team-info h3 { margin-bottom: 0.25rem; }
.team-info p { color: var(--muted-foreground); margin: 0; font-size: 0.875rem; }
.team-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Feature content */
.feature-content h3 { margin-bottom: 0.75rem; }
.feature-content p { color: var(--muted-foreground); margin: 0; }

/* Footer nav */
.footer-legal { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-nav a:hover { color: var(--primary-foreground); }

/* Logo link */
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }

@media (max-width: 768px) {
  .story-image, .story-img,
  .expertise-image, .expertise-img,
  .location-image, .location-img,
  .join-team-image, .join-team-img {
    height: 260px;
  }
}

