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

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

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

.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.2;
  margin-bottom: 1rem;
}

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

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

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

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

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

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

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

.nav-links a {
  color: var(--foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

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

.plaxorvani-top_mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
}

.plaxorvani-top_mobile-menu {
  background: var(--card);
  border: 2px solid var(--border);
  margin-top: 1rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-nav-links a {
  color: var(--card-foreground);
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.hero-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--primary-foreground);
}

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

/* Sections */
.section {
  padding: 7rem 0;
  background: var(--background);
}

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

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

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

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

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

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

/* Cards */
.feature-card,
.service-card,
.pricing-card,
.team-card,
.value-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.team-card:hover,
.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Icons */
.icon-box {
  background: var(--background);
  border: 2px solid var(--primary);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

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

/* Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.partner-item {
  padding: 2rem;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--card-foreground);
}

.partner-logo {
  margin-bottom: 1rem;
}

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

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

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

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

.stats-content img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

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

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

.faq-preview .faq-item .faq-answer {
  display: block;
  padding: 1rem 0;
}

.faq-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  padding: 3rem;
  border: 2px solid var(--border);
  background: var(--card);
  align-items: center;
}

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

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

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

.faq-cta-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

/* Services */
.service-section {
  padding: 4rem 0;
}

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

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

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

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

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

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

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

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

.service-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

/* Team */
.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

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

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

.team-intro-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

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

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.expertise-tag {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card.leadership {
  border-color: var(--primary);
}

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

/* About */
.about-content h2 {
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

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

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

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

.achievement-item h4 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.achievements-content h2 {
  color: var(--foreground);
  margin-bottom: 2rem;
}

.achievements-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

.approach-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.approach-item h4 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

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

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

.culture-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

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

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

.careers-benefits ul {
  list-style: none;
  margin-bottom: 2rem;
}

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

.careers-benefits li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.careers-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

/* Contact */
.contact-grid {
  gap: 4rem;
}

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

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

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

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

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

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

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

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

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

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

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

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

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

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  background: var(--background);
  border: 2px solid var(--primary);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

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

.contact-image {
  margin-top: 2rem;
}

.contact-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

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

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

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

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

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

.location-details h4,
.office-hours h4 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.location-details ul {
  list-style: none;
  margin-bottom: 2rem;
}

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

.office-hours p {
  color: var(--muted-foreground);
}

.location-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--border);
}

/* Resources */
.resource-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

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

/* Pricing */
.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  text-align: left;
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: var(--muted);
  color: var(--foreground);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--border);
}

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

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

.footer-column p,
.footer-column li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

.legal-content ul,
.legal-content ol {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

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

.last-updated {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 2rem;
}

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

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

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

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

/* Cookie Consent */
.plaxorvani-top_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 2px solid var(--border);
  z-index: 10000;
  padding: 1rem 0;
}

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

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

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

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

.plaxorvani-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: 2rem;
}

.plaxorvani-top_cookie-modal-content {
  background: var(--card);
  border: 2px solid var(--border);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  color: var(--card-foreground);
}

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

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

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

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

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--muted-foreground); }
.mb-4 { margin-bottom: 1rem; }

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

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

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

/* Text Center Utility */
.text-center {
  text-align: center;
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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