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

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

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

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

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

/* Header & Navigation */
.header {
  background: transparent;
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

.parahubuxae_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

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

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

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

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

/* Buttons */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--secondary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

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

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

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

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

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

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

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

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

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

.section-border {
  border-bottom: 1px solid var(--border);
}

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

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

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

/* Cards */
.card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.08);
}

/* Feature Cards */
.feature-card, .service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.feature-card:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.08);
}

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

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

.feature-content, .service-content {
  padding: 2rem;
}

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

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

/* Icons */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(100, 116, 139, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

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

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

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

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

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

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

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
}

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

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.08);
}

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

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

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

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

.plan-subtitle {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

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

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

.feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

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

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

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

.team-card, .team-member {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.team-card:hover, .team-member:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 116, 139, 0.1);
  border-radius: 50%;
}

.team-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

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

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

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

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.expertise-tag {
  background: rgba(100, 116, 139, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.checkbox-text {
  color: var(--foreground);
  font-size: 0.9rem;
}

.success-message {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

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

.success-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
}

.success-content h3 {
  color: var(--accent);
  margin-bottom: 0;
}

.success-content p {
  color: var(--foreground);
  margin-bottom: 0;
}

/* Newsletter */
.newsletter {
  background: var(--muted);
  padding: 7rem 0;
  text-align: center;
}

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

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

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

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
}

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

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

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

.footer-column h4 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

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

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

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

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

.company-details {
  margin-top: 1rem;
}

.company-details p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

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

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal p {
  color: #d1d5db;
  font-size: 0.9rem;
}

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

.footer-legal-links a {
  color: #d1d5db;
  font-size: 0.9rem;
}

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

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

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

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

.parahubuxae_cookie-banner-text {
  flex: 1;
}

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

.parahubuxae_cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.legal-intro {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.last-updated {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.legal-content li {
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details {
  background: var(--muted);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border: 1px solid var(--border);
}

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

.contact-details strong {
  color: var(--foreground);
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

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

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

/* Features Table */
.features-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

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

.features-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.table-check {
  color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

.table-cross {
  color: var(--muted-foreground);
  width: 1.25rem;
  height: 1.25rem;
}

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

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.project-content {
  padding: 2rem;
}

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

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

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(100, 116, 139, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.project-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

/* Animation Classes */
.fade-in-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.contact-info-item {
  text-align: center;
  padding: 2rem;
}

.contact-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(100, 116, 139, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.contact-details h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p {
  color: var(--muted-foreground);
  margin: 0;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .cta-actions {
    flex-direction: column;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* ============================================================
   PARAHUBUXAE: Missing classes + fixes
   ============================================================ */

/* Hero image - was absolute positioned (wrong), fix to grid column */
.hero-image {
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
@media (max-width: 768px) { .hero-image { height: 260px; margin-top: 2rem; } }

/* Section wrappers */
.section-border { border-bottom: 1px solid var(--border); }
.services-grid, .advanced-services, .service-categories, .implementation-process,
.company-story, .mission-values, .team-section, .achievements, .company-culture,
.location-contact, .contact-info-bar, .alternative-contact, .contact-faq,
.pricing-plans, .plan-comparison, .addon-services, .pricing-faq,
.about-preview, .pricing-preview, .team-preview, .features, .stats-counter,
.portfolio-overview, .featured-projects, .success-metrics, .technical-capabilities,
.industry-focus, .overview-stats { padding: 5rem 0; }

/* Story / about 2-col layouts */
.story-content, .about-content, .capabilities-content, .culture-content,
.overview-content, .location-contact > .container > div {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.story-text, .about-text, .capabilities-text, .culture-text, .overview-text {
  display: flex; flex-direction: column; gap: 1rem;
}
.story-text p, .about-text p, .capabilities-text p, .culture-text p { color: var(--muted-foreground); }
.story-image, .about-image, .capabilities-image, .culture-image {
  height: 420px; border-radius: var(--radius); overflow: hidden;
}
.story-image img, .about-image img, .about-img, .capabilities-image img, .culture-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 768px) {
  .story-content, .about-content, .capabilities-content, .culture-content, .overview-content { grid-template-columns: 1fr; }
  .story-image, .about-image, .capabilities-image, .culture-image { height: 260px; }
}

/* Mission values */
.mission-values { }
.mission-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; border-top: 4px solid var(--primary); }
.mission-card h3 { margin-bottom: 0.75rem; }
.mission-card p { color: var(--muted-foreground); margin: 0; }

/* Team */
.team-cta { text-align: center; margin-top: 3rem; }
.team-preview { }

/* Achievements */
.achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.achievement-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.achievement-item h3 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.5rem; }
.achievement-item p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }
@media (max-width: 768px) { .achievements-grid { grid-template-columns: 1fr; } }

/* Culture highlights */
.culture-highlights { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.culture-highlight { display: flex; gap: 1rem; align-items: flex-start; }
.highlight-icon { color: var(--secondary); flex-shrink: 0; }

/* Values */
.values-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.values-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.values-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); font-size: 0.875rem; }

/* Services */
.service-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.service-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; font-size: 0.875rem; color: var(--muted-foreground); border-bottom: 1px solid var(--border); }
.service-features li:last-child { border-bottom: none; }
.service-categories { }
.services-grid { }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.category-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.category-image { height: 180px; overflow: hidden; }
.category-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-content { padding: 1.5rem; }
@media (max-width: 768px) { .categories-grid { grid-template-columns: 1fr; } }

/* Implementation process */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.process-step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.step-number { width: 3rem; height: 3rem; border-radius: 50%; background: var(--primary); color: var(--primary-foreground); display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1.25rem; }
.step-content h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-content p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }

/* Pricing */
.pricing-plans { }
.pricing-description { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1.5rem; }
.plan-icon { color: var(--primary); margin-bottom: 1rem; }
.pricing-preview { }
.plan-comparison { }
.pricing-faq { }
.feature-icon { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }

/* Addons */
.addon-services { }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.addon-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.addon-icon { color: var(--primary); margin-bottom: 1rem; }
.addon-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.addon-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); padding: 0.3rem 0; }
@media (max-width: 768px) { .addons-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-info-bar { background: var(--muted); }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon-box { width: 3rem; height: 3rem; background: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary-foreground); flex-shrink: 0; }
.contact-icon { width: 1.25rem; height: 1.25rem; color: var(--primary-foreground); }
.contact-details h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-details p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }
.contact-details a { color: var(--primary); }
.contact-method { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.method-icon { color: var(--primary); margin-bottom: 1rem; }
.method-link { color: var(--primary); font-weight: 500; font-size: 0.875rem; }
.contact-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.alternative-contact { }
.contact-faq { }
.contact-cta { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--primary-foreground); text-align: center; padding: 5rem 0; }
@media (max-width: 768px) { .contact-info-grid, .contact-methods-grid { grid-template-columns: 1fr; } }

/* Address / location */
.address-info { display: flex; flex-direction: column; gap: 0.5rem; }
.address-info p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }
.location-info { display: flex; flex-direction: column; gap: 1rem; }
.location-contact { }

/* Portfolio */
.portfolio-overview { }
.featured-projects { }
.overview-text p, .overview-stats { color: var(--muted-foreground); }

/* Metrics */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.metric-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.metric-icon { color: var(--primary); margin-bottom: 1rem; }

/* Technical */
.technical-capabilities { }
.platform-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.platform-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--muted); border-radius: var(--radius); }
.platform-icon { color: var(--primary); flex-shrink: 0; }

/* Industry */
.industry-focus { }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.industry-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.industry-icon { color: var(--primary); margin-bottom: 1rem; }
@media (max-width: 768px) { .industries-grid, .metrics-grid { grid-template-columns: 1fr; } }

/* Stats counter */
.stats-counter { background: var(--primary); color: var(--primary-foreground); padding: 4rem 0; }

/* Success metrics */
.success-metrics { }

/* Form */
.form-header { margin-bottom: 2rem; }
.form-submit { margin-top: 1.5rem; }
.comparison-table { overflow-x: auto; margin-top: 2rem; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: left; }
.comparison-table th { background: var(--muted); font-weight: 600; }

/* Footer logo */
.footer-logo { height: 2rem; margin-bottom: 0.75rem; }
.footer-logo img, .footer-logo .logo-img { height: 2rem; filter: brightness(0) invert(1); display: block; }

/* icon-box on dark theme: white icons */
.icon-box { color: #ffffff; }
.icon-box i, .icon-box svg { color: #ffffff !important; stroke: #ffffff !important; }

/* FAQ accordion */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; background: var(--card); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; font-size: 1rem; font-weight: 500; color: var(--foreground); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question:hover { background: var(--muted); }
.faq-answer { display: none; padding: 1rem 1.5rem 1.5rem; color: var(--muted-foreground); font-size: 0.9rem; border-top: 1px solid var(--border); }
.faq-item.active .faq-answer { display: block; }

