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

/* Global Styles */
* {
  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-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

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

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

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Navigation */
.navbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

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

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

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

.alphaproluxisum_mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--card);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-link {
  display: block;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

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

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

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

.btn-hero {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
}

/* Sections */
.section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

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

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

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

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

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

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

/* Pricing Cards */
.pricing-preview {
  background: var(--background);
}

.pricing-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

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

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--card-foreground);
}

.feature-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.5rem;
}

.btn-pricing {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin-top: 1rem;
}

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

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

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--foreground);
}

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

/* Gallery */
.gallery-preview {
  background: var(--background);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.gallery-overlay h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

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

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

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

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

.featured-image {
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

/* Stats Counter */
.stats-counter {
  background: var(--background);
}

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

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

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

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

/* FAQ */
.faq-preview {
  background: var(--background);
}

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

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

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

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

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

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

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

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

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

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Us */
.why-choose-us {
  background: var(--background);
}

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

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

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

/* CTA Section */
.cta {
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  margin: 2rem 0;
}

.cta-content {
  text-align: center;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
}

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

.cta-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-cta-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 2px solid white;
  border-radius: var(--radius);
  font-weight: 600;
}

/* Services Page */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

.service-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  color: var(--foreground);
}

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

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--foreground);
}

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

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

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

.service-pricing p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--foreground);
}

.service-categories {
  background: var(--background);
  padding: 4rem 0;
}

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

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

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

.btn-service {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

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

/* About Page */
.company-story {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

.story-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

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

.mission-values {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.mission-content {
  display: grid;
  gap: 3rem;
}

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

.mission-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

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

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

.value-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

.team {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

.member-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.avatar-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.team-member h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

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

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

.achievements {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.achievement-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

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

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

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

.info-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

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

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

/* Contact Page */
.contact-main {
  padding: 4rem 0;
}

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

.alphaproluxisum_contact-form-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.alphaproluxisum_contact-form-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

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

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

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

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

.btn-submit {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.success-message {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  text-align: center;
}

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

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

.success-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.success-content p {
  margin: 0;
  .9;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--card-foreground);
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.detail-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

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

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

.detail-content a:hover {
  text-decoration: underline;
}

.map-placeholder {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

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

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

.map-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.map-content p {
  color: var(--muted-foreground);
  margin: 0;
}

.contact-methods {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

.method-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--card-foreground);
}

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

.btn-method {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
}

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

.business-details {
  max-width: 600px;
  margin: 0 auto;
}

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

.business-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  color: var(--card-foreground);
}

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

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

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

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.faq-contact {
  padding: 4rem 0;
  text-align: center;
}

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

.contact-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--foreground);
}

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

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

.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-meta p {
  margin: 0.25rem 0;
  color: var(--foreground);
  font-weight: 600;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

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

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.contact-details {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

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

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

.contact-details a:hover {
  text-decoration: underline;
}

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

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  color: var(--card-foreground);
  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);
  font-weight: 700;
  color: var(--foreground);
}

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

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

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

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.footer-column p {
  color: #d1d5db;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.85rem;
  margin-right: 1rem;
}

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

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

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

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

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

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

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

/* Cookie Banner */
.alphaproluxisum_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  color: var(--card-foreground);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

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

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

.alphaproluxisum_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

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

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

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

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

.alphaproluxisum_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .alphaproluxisum_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .alphaproluxisum_cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .alphaproluxisum_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 */
#alphaproluxisum_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#alphaproluxisum_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#alphaproluxisum_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
