:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #dc2626;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Open Sans', sans-serif;
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

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

.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; }
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;
  transition: all 0.3s ease;
}

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

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

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

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

/* Buttons */
.btn-primary,
.btn-outline,
.btn-outline-white,
.btn-primary-large {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 1rem;
  border-bottom: 3px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  border-bottom: 3px solid var(--primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  border-bottom: 3px solid var(--primary);
}

.btn-outline:hover {
  background: var(--muted);
  border-bottom-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid var(--primary-foreground);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--secondary);
  transform: translateY(-2px);
  color: var(--primary-foreground);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  border-bottom: 3px solid var(--primary);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  border-bottom-color: var(--secondary);
  color: var(--primary-foreground);
}

/* Icons */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--muted), var(--background));
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }

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

/* Navigation */
.navbar {
  background: transparent;
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

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

.logo-img {
  height: 2.5rem;
  width: auto;
}

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

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

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

.astroproluxora_mobile-menu-content a {
  display: block;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  margin: 1rem 0;
  padding: 1rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.astroproluxora_mobile-menu-content a:hover {
  border-bottom-color: var(--secondary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #111;
  color: #fff;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

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

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

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

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

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

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

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

section:nth-child(even) {
  background: var(--muted);
}

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

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

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

/* Partner Logos */
.partner-logos {
  padding: 3rem 0;
  background: var(--background);
}

.partner-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.partner-item span {
  font-weight: 500;
  color: var(--foreground);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--primary-foreground);
}

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

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

/* Features Section */
.features-section {
  background: var(--background);
}

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.feature-content {
  padding: 1.5rem;
  color: var(--card-foreground);
}

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

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

/* Why Choose Section */
.why-choose-section {
  background: var(--muted);
}

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

.advantage-item {
  text-align: center;
  color: var(--foreground);
}

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

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

/* About Preview */
.about-preview {
  background: var(--background);
}

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

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

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

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

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

/* Process Steps */
.process-section {
  background: var(--muted);
}

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  color: var(--foreground);
}

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

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

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

/* Newsletter Section */
.newsletter-section {
  background: var(--background);
}

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

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

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

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
}

.newsletter-form .form-input {
  flex: 1;
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

/* Team Preview */
.team-preview {
  background: var(--muted);
}

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

.team-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--card-foreground);
}

.team-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.team-info p {
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  color: var(--primary-foreground);
  text-align: center;
  overflow: hidden;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.success-message {
  background: #10b981;
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
}

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

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

.footer-brand h3 {
  margin-bottom: 1rem;
  color: #f9fafb;
}

.footer-brand p {
  color: #d1d5db;
}

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

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

.link-group h4 {
  margin-bottom: 1rem;
  color: #f9fafb;
}

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

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

.link-group ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-group ul li a:hover {
  color: #f9fafb;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item a {
  color: #d1d5db;
}

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

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

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

.footer-legal p {
  color: #d1d5db;
  margin: 0;
}

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

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

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

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

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

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

.astroproluxora_cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

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

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

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

/* Cookie Modal */
.astroproluxora_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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .astroproluxora_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Services Page Specific */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: var(--card-foreground);
}

.service-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-card:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  height: 300px;
  overflow: hidden;
}

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

.service-content {
  padding: 2rem;
}

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

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

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

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

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

@media (max-width: 768px) {
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .service-card:nth-child(even

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

/* === ASTROPROLUXORA: nth-child !important + missing classes === */

/* cta-section=10(even) on index, cta=6(even) on services — override nth-child muted */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
}

/* contact-cta=4(even) on faq — needs dark bg */
.contact-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: var(--primary-foreground) !important;
  padding: 5rem 0;
  text-align: center;
}
.contact-cta h2, .contact-cta p { color: var(--primary-foreground) !important; }
.contact-cta .btn-outline {
  color: var(--primary-foreground) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* stats-section=3(odd) — already dark, no nth-child issue ✓ */
/* newsletter=8(even) — has background:var(--background), nth gives muted — acceptable */

/* === IMAGE LAYOUTS === */
.story-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.story-text { display: flex; flex-direction: column; gap: 1rem; }
.story-image { height: 420px; border-radius: var(--radius); overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mission-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.mission-statement, .mission-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
}

/* Why choose (about page) */
.why-choose-about { }
.choose-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.choose-text { display: flex; flex-direction: column; gap: 1rem; }
.choose-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.choose-point { display: flex; gap: 1rem; align-items: flex-start; }
.highlight-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.highlight-icon { color: var(--primary); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
.choose-image { height: 420px; border-radius: var(--radius); overflow: hidden; }
.choose-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Team */
.team-section { }
.team-member { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.member-avatar { width: 5rem; height: 5rem; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.member-info { }
.member-role { color: var(--primary); font-weight: 500; font-size: 0.875rem; margin-bottom: 0.5rem; }

/* Achievements timeline */
.achievements-section { }
.achievements-timeline { display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 2rem auto 0; }
.timeline-item { display: flex; gap: 2rem; align-items: flex-start; }
.timeline-year { font-size: 1.25rem; font-weight: 800; color: var(--primary); min-width: 4rem; flex-shrink: 0; }
.timeline-marker { width: 1rem; height: 1rem; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 0.4rem; }
.timeline-content h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.timeline-content p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }
.timeline-duration { font-size: 0.75rem; color: var(--muted-foreground); }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }

/* Contact section */
.contact-section { }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-header h2 { margin-bottom: 0.5rem; }
.contact-info-block { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--muted); border-radius: var(--radius); }
.contact-details { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-details h4 { font-weight: 600; margin: 0 0 0.25rem; }
.contact-details p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }
.contact-note { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1rem; font-style: italic; }
.contact-options { }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.option-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.form-header { margin-bottom: 2rem; }
.form-header h2 { margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { margin-top: 1.5rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.75rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.875rem; }
.checkbox-label input { margin: 0; flex-shrink: 0; }
.checkbox-text { color: var(--muted-foreground); line-height: 1.5; }
.info-icon { width: 1.25rem; height: 1.25rem; color: var(--muted-foreground); }
.newsletter-signup { margin-top: 1.5rem; }

/* FAQ */
.faq-categories { }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.category-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color 0.2s; }
.category-card:hover, .category-card.active { border-color: var(--primary); }
.faq-content { }
.faq-section { margin-bottom: 3rem; }
.faq-section h2 { font-size: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border); }
.faq-items { display: flex; flex-direction: column; gap: 0; }
.faq-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; background: var(--card); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; user-select: none;
}
.faq-question:hover { background: var(--muted); }
.faq-question h3 { margin: 0; font-size: 1rem; font-weight: 500; color: var(--foreground); }
.faq-toggle { background: none; border: 1px solid var(--border); border-radius: 50%; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s; color: var(--foreground); }
.faq-toggle:hover { background: var(--primary); color: var(--primary-foreground); }
.icon-plus, .icon-minus { width: 1rem; height: 1rem; }
.faq-answer { display: none; padding: 1rem 1.5rem 1.5rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.7; border-top: 1px solid var(--border); }
.faq-answer:not(.hidden) { display: block; }
.faq-preview { }

/* Portfolio */
.portfolio-stats { background: var(--muted); }
.portfolio-grid { }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.project-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.project-image { position: relative; height: 220px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.project-card:hover .project-overlay { opacity: 1; }
.project-category { color: #fff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.project-content { padding: 1.5rem; }
.project-highlights { display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.highlight-item .highlight-icon { color: var(--primary); }

.industry-solutions { }
.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; }
.industry-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.industry-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; font-size: 0.875rem; color: var(--muted-foreground); }

.client-testimonials { }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.testimonial-content { font-style: italic; color: var(--foreground); margin-bottom: 1.5rem; border-left: 3px solid var(--primary); padding-left: 1rem; }
.testimonial-author { display: flex; gap: 1rem; align-items: center; }
.author-info h4 { font-weight: 600; margin: 0 0 0.25rem; font-size: 0.95rem; }
.author-info p { color: var(--muted-foreground); font-size: 0.8rem; margin: 0; }

.results-summary { }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.result-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.result-icon { color: var(--primary); margin-bottom: 1rem; }
.result-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 0.25rem; }
.result-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.result-description { color: var(--muted-foreground); font-size: 0.8rem; margin: 0; }

/* Pricing */
.pricing-section { }
.pricing-grid { display: grid; gap: 2rem; margin-top: 2rem; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); border-width: 2px; }
.pricing-badge { display: inline-block; background: var(--primary); color: var(--primary-foreground); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 1rem; }
.pricing-header { margin-bottom: 1.5rem; }
.price-display { display: flex; align-items: baseline; gap: 0.25rem; margin-top: 0.75rem; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.period { font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-features { flex: 1; }
.pricing-features ul { list-style: none; padding: 0; margin: 0; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.check-icon { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }
.pricing-action { margin-top: 1.5rem; }
.pricing-action .btn-primary { width: 100%; text-align: center; display: block; }
.pricing-note { text-align: center; color: var(--muted-foreground); font-size: 0.875rem; margin-top: 2rem; }

/* Services */
.services-grid-section { }
.service-categories { }

/* Implementation */
.implementation-process { }
.process-timeline { display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 2rem auto 0; }

/* Portfolio stats */
.portfolio-stats .stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.stat-description { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }

/* Misc */
.partner-logos-content { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center; margin-top: 2rem; }
.faq-cta { text-align: center; padding: 3rem 0; }
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.success-content { display: flex; align-items: center; gap: 1rem; }
.success-icon { color: #22c55e; flex-shrink: 0; }
.cookie-table { overflow-x: auto; margin: 1.5rem 0; }
.cookies-list { display: flex; flex-direction: column; gap: 0.5rem; }
.legal-content, .legal-document { padding: 4rem 0; }
.legal-section { margin-bottom: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.mb-4 { margin-bottom: 1rem; }
.feature-tag { display: inline-block; background: var(--muted); color: var(--muted-foreground); font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 9999px; }

@media (max-width: 768px) {
  .story-content, .choose-content, .contact-content { grid-template-columns: 1fr; }
  .story-image, .choose-image { height: 260px; }
  .mission-content, .values-grid, .options-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid, .testimonials-grid, .industries-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .results-grid, .categories-grid { grid-template-columns: 1fr; }
}


.footer-column { display: flex; flex-direction: column; gap: 0.5rem; }
.mission-values { }
.company-story { }
