/* CSS Variables */
:root {
  --primary: #16A34A;
  --primary-foreground: #FFFFFF;
  --secondary: #15803D;
  --secondary-foreground: #FFFFFF;
  --accent: #CA8A04;
  --accent-foreground: #422006;
  --background: #FEFCE8;
  --foreground: #1C1917;
  --card: #FFFFFF;
  --card-foreground: #1C1917;
  --border: #D6D3D1;
  --input: #D6D3D1;
  --ring: #16A34A;
  --muted: #F5F5F4;
  --muted-foreground: #78716C;
  --font-family: 'Open Sans', sans-serif;
  --radius: 0.75rem;
}

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

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

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

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

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

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

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

/* Layout Classes */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 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;
    gap: 1rem;
  }
}

/* Images */
.image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

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

.icon-sm {
  width: 1rem;
  height: 1rem;
}

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

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

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

.btn-primary:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-primary:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
}

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

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

.btn-outline:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
}

/* Header and Navigation */
.header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1000;
}

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

.logo {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 700;
  font-size: 1.5rem;
}

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

.velorvantx-top_mobile-menu-toggle {
  background: none;
  border: 2px solid var(--primary);
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--primary);
}

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

.velorvantx-top_mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.velorvantx-top_mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.velorvantx-top_mobile-menu-link:hover {
  background: var(--muted);
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: var(--background);
  color: var(--foreground);
  position: relative;
  padding: 4rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

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

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

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

.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: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

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

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

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

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

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

.section-title {
  font-size: 2rem;
  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;
}

.section-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Card Styles */
.team-card,
.service-card,
.feature-card,
.faq-card,
.project-card,
.value-card,
.type-card,
.feedback-card,
.contact-option-card,
.question-card,
.category-card {
  background: var(--card);
  color: var(--card-foreground);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  height: 100%;
}

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

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

.team-role {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

.stats-content h2 {
  margin-bottom: 1rem;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.stat-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

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

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

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.about-cta {
  margin-top: 2rem;
}

/* Partner Logos Section */
.partner-logos {
  background: var(--background);
}

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

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

.partner-category {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.partner-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

/* CTA Section */
.cta-section {
  padding: 3rem 0;
}

.cta-container {
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

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

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

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

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

/* Footer */
.footer {
  background: #111827;
  color: #f9fafb;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-separator {
  color: #6b7280;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .footer-separator {
    display: none;
  }
}

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

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

.velorvantx-top_cookie-banner-text {
  flex: 1;
}

.velorvantx-top_cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
}

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

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

.velorvantx-top_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
}

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

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

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

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

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

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

@media (max-width: 480px) {
  .velorvantx-top_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Services Page Styles */
.service-section {
  background: var(--background);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

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

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.process-step {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
}

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

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

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

/* About Page Styles */
.mission-statement {
  background: var(--card);
  text-align: center;
  padding: 4rem 0;
}

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

.mission-text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

.company-overview {
  background: var(--background);
}

.overview-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.core-values {
  background: var(--background);
}

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

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

.value-description {
  color: var(--muted-foreground);
  text-align: center;
}

.expertise-areas {
  background: var(--background);
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.expertise-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.our-approach {
  background: var(--background);
}

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

.phase-item {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.phase-number {
  background: var(--primary);
  color: var(--primary-foreground);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.phase-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

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

.why-choose-us {
  background: var(--background);
}

.choose-benefits {
  margin-top: 2rem;
}

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

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

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

.company-info {
  background: var(--background);
}

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

.info-card {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.info-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-detail {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Contact Page Styles */
.contact-info-bar {
  background: var(--card);
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-detail {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

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

.velorvantx-top_contact-form-section {
  background: var(--background);
}

.velorvantx-top_contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.velorvantx-top_contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.velorvantx-top_contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

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

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

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

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

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

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

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

.form-actions {
  margin-top: 1.5rem;
}

.success-message {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.additional-contact {
  background: var(--background);
}

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

.option-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

.option-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.option-contact {
  text-align: center;
  font-weight: 500;
}

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

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

.office-info {
  background: var(--background);
}

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

.office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.response-times {
  background: var(--background);
}

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

.response-item {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.response-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.response-time {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

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

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

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

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

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

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

.legal-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--foreground);
}

.legal-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

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

.legal-text a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
}

.faq-toggle {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  display: none;
}

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

.faq-answer p {
  margin-bottom: 1rem;
}

.additional-questions {
  background: var(--background);
}

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

.question-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

.question-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.question-contact {
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

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

.question-hours {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

.faq-categories {
  background: var(--background);
}

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

.category-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

.category-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1rem;
}

.category-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: block;
  text-align: center;
}

.category-link:hover {
  text-decoration: underline;
}

/* Portfolio Page */
.portfolio-overview {
  background: var(--card);
}

.overview-stats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portfolio-projects {
  background: var(--background);
}

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

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

.project-category {
  margin-bottom: 0.75rem;
}

.category-tag {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.partnership-types {
  background: var(--background);
}

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

.type-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.type-features li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.type-features li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.results-outcomes {
  background: var(--background);
}

.results-list {
  margin-top: 2rem;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.client-feedback {
  background: var(--background);
}

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

.feedback-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

.feedback-source {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* Animation Classes */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Animation delays for staggered effects */
.animate-item:nth-child(1) { transition-delay: 0ms; }
.animate-item:nth-child(2) { transition-delay: 100ms; }
.animate-item:nth-child(3) { transition-delay: 200ms; }
.animate-item:nth-child(4) { transition-delay: 300ms; }
.animate-item:nth-child(5) { transition-delay: 400ms; }
.animate-item:nth-child(6) { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .animate-item {
    transition: none;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-border {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .mission-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-container {
    padding: 2rem;
  }
  
  .legal-text {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .mission-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-container {
    padding: 1.5rem;
  }
  
  .legal-text {
    padding: 1.5rem;
  }
  
  .cookie-table {
    font-size: 0.75rem;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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