/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #06b6d4;
  --secondary-foreground: #111827;
  --accent: #dc2626;
  --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: 'Open Sans', sans-serif;
  --radius: 1rem;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--foreground);
  background: var(--background);
  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(--secondary);
}

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

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

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

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

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

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

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

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

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

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

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

.success-message h3 {
  margin: 0;
  color: var(--secondary);
}

.success-message p {
  margin: 0;
}

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

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

.nav-brand {
  display: flex;
  align-items: center;
}

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

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

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--muted);
}

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

.statemisjq_mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  margin-top: 1rem;
}

.statemisjq_mobile-menu a {
  color: var(--foreground);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.statemisjq_mobile-menu a:hover {
  background: var(--muted);
}

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

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

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

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

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

.hero-text {
  max-width: 100%;
}

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

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

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

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

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

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.page-header p {
  font-size: 1.25rem;
  margin: 0;
  .8;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}

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

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.section-header p {
  font-size: 1.125rem;
  margin: 0;
  .8;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 4rem 0;
}

/* Testimonials */
.testimonials {
  background: var(--background);
}

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

.testimonial-content {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.testimonial-content p {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 0 2rem 0;
  line-height: 1.4;
}

.testimonial-content cite {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  font-style: normal;
}

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

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

.team-avatar {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.team-card p {
  margin: 0;
  .8;
}

.team-section {
  background: var(--background);
}

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

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

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

.team-member p:not(.team-role) {
  margin: 0;
  .8;
}

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

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

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

.partner-icon {
  color: var(--secondary);
}

.partner-item span {
  font-weight: 600;
}

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

/* CTA Section */
.cta {
  background: var(--primary);
  color: #fff;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.cta-content p {
  font-size: 1.25rem;
  margin: 0 0 2rem 0;
  .9;
}

.cta .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta .btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* Services */
.services-overview {
  background: var(--background);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

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

.service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.service-content p {
  font-size: 1.125rem;
  margin: 0 0 1.5rem 0;
  .9;
}

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

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

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

.service-image img {
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

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

/* Pricing */
.pricing-section {
  background: var(--muted);
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.pricing-card p {
  margin: 0 0 1.5rem 0;
  .8;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

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

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

/* About Page */
.company-intro {
  background: var(--background);
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
}

.intro-content p {
  font-size: 1.125rem;
  margin: 0 0 1.5rem 0;
  .9;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
}

.value-card p {
  margin: 0;
  .8;
}

.achievements-section {
  background: var(--muted);
}

.achievement-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.achievement-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
}

.achievement-item p {
  margin: 0;
  .8;
}

/* Contact Page */
.contact-info-bar {
  background: var(--card);
  padding: 2rem 0;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

.contact-item a {
  color: var(--secondary);
  text-decoration: none;
}

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

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

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

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

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.form-header p {
  margin: 0;
  .8;
}

.statemisjq_contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
}

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

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

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
}

.contact-card p {
  margin: 0 0 0.5rem 0;
  .8;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--secondary);
  text-decoration: none;
}

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

/* Blog */
.blog-content {
  background: var(--background);
}

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

.blog-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content-area {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

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

.blog-category {
  color: var(--secondary);
  font-weight: 600;
}

.blog-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.blog-card p {
  margin: 0;
  .8;
  line-height: 1.6;
}

.blog-cta {
  background: var(--primary);
  color: #fff;
}

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

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

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

.legal-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1rem 0;
  color: var(--secondary);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.legal-text p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
}

.legal-text ul {
  margin: 0 0 1.5rem 0;
  padding-left: 2rem;
}

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

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

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

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

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

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

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

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem 0;
}

.footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  margin: 0;
  .8;
}

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

.link-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.contact-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  .8;
}

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

/* Cookie Banner & Modal */
.statemisjq_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;
}

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

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

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

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

.statemisjq_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

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

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

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

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.statemisjq_cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.statemisjq_cookie-toggle-row div {
  flex: 1;
}

.statemisjq_cookie-toggle-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

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

@media (max-width: 768px) {
  .statemisjq_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .statemisjq_cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .statemisjq_cookie-banner-actions button {
    width: 100%;
  }
  
  .statemisjq_cookie-modal-actions {
    flex-direction: column;
  }
  
  .statemisjq_cookie-modal-actions button {
    width: 100%;
  }
}

/* Animation Classes */
.animate-slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-slide.from-right {
  transform: translateX(40px);
}

.animate-slide.animate-in {
  opacity: 1;
  transform: translateX(0);
}

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