:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #EC4699;
  --secondary-foreground: #111827;
  --accent: #EB9B24;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #64748b;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.75rem;
}

* {
  box-sizing: border-box;
}

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

.hidden {
  display: none !important;
}

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

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

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

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

a:hover {
  text-decoration: underline;
}

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

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
  text-decoration: none;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
}

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

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

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

/* Icons */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

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

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

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

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

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

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

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

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

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

/* Header and Navigation */
.navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

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

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

.logichubnovaes_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.logichubnovaes_mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
}

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

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

/* Hero Section */
.hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

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

.hero-text h1 {
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Feature Cards */
.feature-card,
.service-category,
.benefit-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

.feature-card p,
.service-category p,
.benefit-card p {
  color: var(--card-foreground);
}

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

/* About Section */
.about-preview,
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

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

.about-img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

/* FAQ Section */
.faq-preview {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  padding: 1rem;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  margin: -1rem;
  margin-bottom: 0;
}

.faq-question h3 {
  margin: 0;
  color: var(--foreground);
}

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

.faq-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

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

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

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

/* Team Section */
.team-preview {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

.team-member {
  text-align: center;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

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

.team-member p {
  color: var(--card-foreground);
}

/* Gallery Section */
.gallery-preview {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

.gallery-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: white;
  margin: 0;
}

/* Services Page */
.services-overview {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

.detailed-services {
  padding: 3rem 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

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

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

.service-row.reverse .service-content {
  direction: ltr;
}

.service-content {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border-radius: var(--radius);
}

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

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

.service-content ul {
  color: var(--card-foreground);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
}

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

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

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

/* Service Packages */
.service-packages {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.package-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  position: relative;
}

.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -10px;
  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;
}

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

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

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

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

/* About Page */
.company-story {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

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

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

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-marker {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.timeline-year {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-content {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

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

@media (max-width: 768px) {
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  
  .timeline-marker {
    grid-column: 1;
  }
  
  .timeline-content {
    grid-column: 2;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
}

/* Mission and Values */
.mission-values {
  padding: 3rem 0;
}

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

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

.value-item.reverse {
  direction: rtl;
}

.value-item.reverse .value-content {
  direction: ltr;
}

.value-content {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border-radius: var(--radius);
}

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

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

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

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

/* Expertise Areas */
.expertise-areas {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.expertise-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

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

/* Team Section */
.team-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

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

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

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

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

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

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

.achievement-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

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

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

/* Why Choose */
.why-choose {
  padding: 3rem 0;
}

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

.advantage-item {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.advantage-content p {
  color: var(--card-foreground);
}

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

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

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

.contact-info-item {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

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

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

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

/* Contact Form */
.logichubnovaes_contact-form-section {
  padding: 3rem 0;
}

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

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

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

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

.logichubnovaes_contact-form {
  background: var(--card);
  color: var(--card-foreground);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

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

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

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
}

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

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--input);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .logichubnovaes_contact-form {
    padding: 1.5rem;
  }
}

/* Success Message */
.success-message {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

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

.success-content p {
  color: var(--card-foreground);
}

/* Additional Contact Options */
.additional-contact {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.contact-option {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

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

.contact-link {
  color: var(--primary);
  font-weight: 500;
}

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

.emergency-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

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

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

@media (max-width: 768px) {
  .emergency-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* FAQ Page */
.faq-categories {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

.category-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

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

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

.category-link {
  color: var(--primary);
  font-weight: 500;
}

.faq-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-section:last-child {
  border-bottom: none;
}

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

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

.faq-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 4rem 0;
}

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

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

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

/* Portfolio Page */
.portfolio-overview {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

.overview-stat {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.portfolio-projects {
  padding: 3rem 0;
}

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

.portfolio-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.portfolio-image {
  position: relative;
}

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

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

.portfolio-content {
  padding: 1rem;
}

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

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

.portfolio-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}

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

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

.result-value {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

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

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

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-results {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Industry Specializations */
.industry-specializations {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
  padding: 3rem 0;
}

.specialization-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

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

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

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

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

/* Client Testimonials */
.client-testimonials {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

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

.testimonial-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

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

.testimonial-content p {
  color: var(--card-foreground);
  font-style: italic;
  margin: 0;
}

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

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

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

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

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

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

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

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

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

.footer-column a {
  color: var(--primary);
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

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

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

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

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

.footer-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2rem 0 1rem;
}

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

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

.footer-legal {
  display: flex;
  gap: 1rem;
}

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

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

/* Legal Pages */
.legal-content {
  padding: 3rem 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

/* Cookie Consent */
.logichubnovaes_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  color: var(--card-foreground);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

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

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

.logichubnovaes_cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.logichubnovaes_cookie-banner-actions .btn-primary,
.logichubnovaes_cookie-banner-actions .btn-outline {
  padding: 8px 16px;
  font-size: 0.875rem;
}

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

/* Cookie Modal */
.logichubnovaes_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.logichubnovaes_cookie-modal-content {
  position: relative;
  background: var(--card);
  color: var(--card-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

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

.logichubnovaes_cookie-toggle-row input[type="checkbox"] {
  margin-left: 1rem;
}

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

@media (max-width: 480px) {
  .logichubnovaes_cookie-modal-content {
    padding: 1.5rem;
  }
  
  .logichubnovaes_cookie-modal-actions {
    flex-direction: column;
  }
}

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