/* Theme CSS — generated by WebGen */
:root {
  --primary: #64748b;
  --primary-foreground: #ffffff;
  --secondary: #8b5cf6;
  --secondary-foreground: #ffffff;
  --accent: #f59e0b;
  --accent-foreground: #111827;
  --background: #ffffff;
  --foreground: #111827;
  --card: #ffffff;
  --card-foreground: #111827;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #64748b;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 1rem;
  /* Legacy aliases for backward compat */
  --color-primary: var(--primary);
  --color-secondary: var(--secondary);
  --color-accent: var(--accent);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-border: var(--border);
  --color-muted: var(--muted-foreground);
  --border-radius: var(--radius);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); line-height: 1.6; color: var(--foreground); background: var(--background); margin: 0; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; }

/* === Layout === */
.container { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.section { padding: 5rem 0; }
.section:nth-child(even) { background: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .container { padding-left: 1.5rem; padding-right: 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); }
}

/* === Buttons === */
.btn-primary { background-color: var(--primary); color: var(--primary-foreground); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 500; text-decoration: none; display: inline-block; transition: opacity 0.2s; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary:hover { opacity: 0.9; }
.btn-secondary { background-color: var(--secondary); color: var(--secondary-foreground); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 500; text-decoration: none; display: inline-block; transition: opacity 0.2s; border: none; cursor: pointer; font-size: 1rem; }
.btn-secondary:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--foreground); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 500; text-decoration: none; display: inline-block; transition: background 0.2s; border: 1px solid var(--border); cursor: pointer; font-size: 1rem; }
.btn-outline:hover { background: rgba(0,0,0,0.05); }

/* === Card === */
.card { background: var(--card); color: var(--card-foreground); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* === Forms === */
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--input); border-radius: var(--radius); font-size: 1rem; font-family: inherit; background: var(--card); color: var(--foreground); }
.form-input:focus { outline: none; border-color: var(--ring); box-shadow: 0 0 0 2px rgba(37,99,235,0.15); }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.25rem; }
.form-group { margin-bottom: 1rem; }
.badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; background: var(--primary); color: var(--primary-foreground); }

/* === Typography === */
.text-xl { font-size: 1.5rem; line-height: 1.3; }
.text-lg { font-size: 1.125rem; line-height: 1.4; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* === Spacing === */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* === Navigation === */
.navbar { background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 40; }
.nav-brand { font-size: 1.5rem; font-weight: 700; color: var(--foreground); text-decoration: none; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-link { color: var(--foreground); text-decoration: none; padding: 0.5rem 0; transition: color 0.2s; }
.nav-link:hover { color: var(--primary); }
.nanohubvexae_mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
@media (max-width: 767px) {
  .nanohubvexae_mobile-menu-btn { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem; }
  .nav-links:not(.hidden) { display: flex; }
}

/* === Hero === */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 5rem 0 4rem; }
.hero-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; max-width: 40rem; }
.hero-cta { margin-top: 2rem; }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }

/* === Footer === */
.footer { background: #111827; color: #f3f4f6; padding: 3rem 0; }
.footer .text-muted { color: #9ca3af; }
.footer-link { display: block; color: #9ca3af; text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
.footer-link:hover { color: #fff; }

/* === CTA === */
.cta-section { background: var(--background); padding: 5rem 0; }
.cta-section .cta-card { max-width: 40rem; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* === Icons === */
.icon-box { display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: var(--radius); background: rgba(0,0,0,0.05); }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.75rem; height: 1.75rem; }
.icon-lg { width: 3rem; height: 3rem; }
.logo-img { height: 2.5rem; }

/* === Utilities === */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex { display: flex; }
.inline { display: inline; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* === Prose (legal pages) === */
.prose { max-width: 65ch; line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.25rem; }
.prose h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; }
.list-disc { list-style-type: disc; padding-left: 1.5rem; }

/* === Table === */
.table-wrap { overflow-x: auto; }
.table-full { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.table-head { background: rgba(0,0,0,0.04); }
.table-cell { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: left; }

/* === Cookie banner & modal === */
.nanohubvexae_cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-top: 1px solid var(--border); box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1); z-index: 50; padding: 1rem; }
.nanohubvexae_cookie-banner.hidden, #nanohubvexae_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#nanohubvexae_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
.nanohubvexae_cookie-banner-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .nanohubvexae_cookie-banner-inner { flex-direction: row; justify-content: space-between; } }
.nanohubvexae_cookie-banner-text { font-size: 0.875rem; color: var(--muted-foreground); }
.nanohubvexae_cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.nanohubvexae_cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 60; }
.nanohubvexae_cookie-modal.hidden, #nanohubvexae_cookie-modal.hidden { display: none !important; }
.nanohubvexae_cookie-modal-overlay { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 1rem; }
.nanohubvexae_cookie-modal-content { background: var(--card); border-radius: var(--radius); max-width: 28rem; width: 100%; padding: 1.5rem; }
.cookie-toggles { display: flex; flex-direction: column; gap: 1rem; }
.nanohubvexae_cookie-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.nanohubvexae_cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.nanohubvexae_cookie-modal-actions .btn-primary, .nanohubvexae_cookie-modal-actions .btn-outline { flex: 1; text-align: center; }

@media print { .no-print, .nanohubvexae_cookie-banner, .nanohubvexae_cookie-modal { display: none; } }


/* === 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 === */

/* ============================================
   NANOHUBVEXAE — REPAIR PATCH
   ============================================ */

/* 1. CTA Section — fix white-on-white */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: var(--primary-foreground) !important;
}
.cta-section .cta-title,
.cta-section .cta-description { color: #fff !important; }
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* 2. Mobile menu toggle — hidden on desktop */
.nanohubvexae_mobile-menu-toggle,
[class*="mobile-menu-toggle"],
[class*="mobile-menu-btn"] { display: none !important; }
@media (max-width: 767px) {
  .nanohubvexae_mobile-menu-toggle,
  [class*="mobile-menu-toggle"],
  [class*="mobile-menu-btn"] { display: flex !important; align-items: center; justify-content: center; }
}

/* 3. nav-links — remove bullets */
.nav-links { list-style: none !important; padding: 0; margin: 0; }

/* 4. Icon-box color (light theme) */
.icon-box { color: var(--primary); }
.icon-box i, .icon-box svg { color: var(--primary) !important; }

/* === HEADER / NAV === */
.header { background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 40; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.mobile-nav-link { display: block; padding: 0.75rem 1rem; color: var(--foreground); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav-link:hover { color: var(--primary); }
.nanohubvexae_mobile-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); z-index: 50; }

/* === HERO === */
.hero-content { width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .hero-inner { grid-template-columns: 1fr 1fr; } }
.hero-text { display: flex; flex-direction: column; gap: 1rem; }
.hero-image { border-radius: var(--radius); overflow: hidden; }
.hero-img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: var(--radius); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* === PAGE HEADER (inner pages) === */
.page-header { padding: 4rem 0; background: var(--muted); text-align: center; border-bottom: 1px solid var(--border); }
.page-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.page-subtitle { font-size: 1.125rem; color: var(--muted-foreground); }

/* === FEATURE CARDS === */
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-title { font-size: 1.1rem; font-weight: 600; }
.feature-description { color: var(--muted-foreground); line-height: 1.6; }
.feature-icon { color: var(--primary); }

/* === SERVICE CARDS === */
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-image { height: 200px; overflow: hidden; }
.service-image img, .service-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.service-title { font-size: 1.1rem; font-weight: 600; }
.service-description { color: var(--muted-foreground); }
.service-features { list-style: none; padding: 0; margin: 0.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.service-pricing { font-weight: 600; color: var(--primary); margin-top: auto; }
.service-row, .service-row-reverse { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; align-items: center; }
@media (min-width: 768px) {
  .service-row { grid-template-columns: 1fr 1fr; }
  .service-row-reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
  .service-row-reverse > * { direction: ltr; }
}
.service-img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 1.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--muted-foreground); margin-top: 0.5rem; }

/* === ABOUT === */
.about-preview { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-preview { grid-template-columns: 1fr 1fr; } }
.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text { color: var(--muted-foreground); line-height: 1.7; }
.about-image, .story-image, .values-image, .location-image { border-radius: var(--radius); overflow: hidden; height: 420px; }
.about-image img, .about-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-img, .values-img, .location-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .about-story { grid-template-columns: 1fr 1fr; } }
.story-content { display: flex; flex-direction: column; gap: 1rem; }
.story-text { color: var(--muted-foreground); line-height: 1.7; }

/* === PROCESS STEPS === */
.process-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.step-number { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.step-content { display: flex; flex-direction: column; gap: 0.5rem; }
.step-title { font-size: 1rem; font-weight: 600; }
.step-description { color: var(--muted-foreground); font-size: 0.9rem; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.pricing-card.featured { border: 2px solid var(--primary); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.pricing-badge { display: inline-block !important; position: static !important; transform: none !important; background: var(--primary); color: var(--primary-foreground); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; align-self: flex-start; }
.pricing-header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-title { font-size: 1.2rem; font-weight: 700; }
.pricing-price, .pricing-amount { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.pricing-label { font-size: 0.8rem; color: var(--muted-foreground); }
.pricing-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.check-icon { color: var(--primary); width: 1rem; height: 1rem; flex-shrink: 0; }

/* === NEWSLETTER === */
.newsletter-content { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .newsletter-content { grid-template-columns: 1fr 1fr; } }
.newsletter-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.newsletter-description { color: var(--muted-foreground); }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group-inline { display: flex; gap: 0.75rem; }
.form-group-inline .form-input { flex: 1; }

/* === CTA === */
.cta-card { border-radius: var(--radius); padding: 3rem; text-align: center; }
.cta-content { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cta-title { font-size: 2rem; font-weight: 700; color: #fff; }
.cta-description { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 40rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* === FOOTER === */
.footer-content { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-content { grid-template-columns: 1fr 1fr; } }
.footer-left { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-company { font-size: 1.25rem; font-weight: 700; color: #f3f4f6; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-address { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }
.footer-reg { margin-top: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-logo { filter: brightness(0) invert(1); height: 2rem; }
.footer-right { display: flex; flex-direction: column; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-column { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-heading { font-size: 0.9rem; font-weight: 600; color: #f3f4f6; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-menu a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-menu a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact-injected { margin-top: 1rem; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-info-section { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method, .contact-option-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; align-items: flex-start; gap: 1rem; }
.method-icon { color: var(--primary); flex-shrink: 0; }
.method-content { display: flex; flex-direction: column; gap: 0.25rem; }
.method-title, .option-title { font-weight: 600; font-size: 0.95rem; }
.method-details, .option-description { color: var(--muted-foreground); font-size: 0.875rem; }
.method-note { font-size: 0.8rem; color: var(--muted-foreground); }
.info-title { font-weight: 600; font-size: 1rem; }
.info-description { color: var(--muted-foreground); }
.form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-description { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.business-hours { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.hours-title { font-weight: 600; margin-bottom: 0.75rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-item { display: flex; justify-content: space-between; font-size: 0.875rem; }
.hours-day { color: var(--foreground); }
.hours-time { color: var(--muted-foreground); }

/* === LOCATION === */
.location-content { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .location-content { grid-template-columns: 1fr 1fr; } }
.location-info { display: flex; flex-direction: column; gap: 1rem; }
.location-details { display: flex; flex-direction: column; gap: 0.75rem; }
.location-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.location-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.location-value { font-size: 0.9rem; color: var(--foreground); }
.location-description { color: var(--muted-foreground); line-height: 1.7; }
.location-image { height: 380px; border-radius: var(--radius); overflow: hidden; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card, .team-member-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: row; align-items: flex-start; gap: 1.25rem; }
.team-avatar { width: 4rem; height: 4rem; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.avatar-icon { color: var(--primary); }
.team-info { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.team-name { font-weight: 700; font-size: 1rem; }
.team-role, .team-title { font-size: 0.875rem; color: var(--primary); font-weight: 500; }
.team-description { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; margin-top: 0.25rem; }
.team-expertise { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.expertise-tag { background: var(--muted); color: var(--foreground); font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.5rem; border-radius: 9999px; }
.team-intro { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.team-intro-text { color: var(--muted-foreground); }
.team-values { margin-top: 4rem; }
.values-list, .values-content { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .values-list, .values-content { grid-template-columns: repeat(3, 1fr); } }
.value-card, .value-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.value-title { font-weight: 700; margin-bottom: 0.5rem; }
.value-text, .value-description { color: var(--muted-foreground); font-size: 0.9rem; }
.value-content { display: flex; flex-direction: column; gap: 0.5rem; }
.values-image { height: 380px; border-radius: var(--radius); overflow: hidden; }
.values-description { color: var(--muted-foreground); line-height: 1.7; }
.join-team-section { margin-top: 4rem; text-align: center; }
.join-content { max-width: 40rem; margin: 0 auto; }
.join-description { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.join-benefits { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.benefit-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; }
.benefit-icon { color: var(--primary); }

/* === ACHIEVEMENTS === */
.achievements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .achievements-grid { grid-template-columns: repeat(4, 1fr); } }
.achievement-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.achievement-title { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.achievement-description { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }

/* === STRENGTH/SUCCESS CARDS === */
.strength-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.strength-title { font-weight: 600; }
.strength-description { color: var(--muted-foreground); font-size: 0.9rem; }
.success-icon { color: var(--primary); margin-bottom: 0.5rem; }
.success-content { display: flex; flex-direction: column; gap: 0.5rem; }

/* === TIMELINE === */
.timeline { display: flex; flex-direction: column; gap: 1.5rem; position: relative; padding-left: 2rem; border-left: 2px solid var(--border); }
.timeline-item { position: relative; }
.timeline-marker { position: absolute; left: -2.6rem; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--primary); border: 3px solid var(--background); top: 0.2rem; }
.timeline-content { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.timeline-title { font-weight: 600; margin-bottom: 0.4rem; }
.timeline-description { color: var(--muted-foreground); font-size: 0.9rem; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; font-size: 1rem; font-weight: 500; color: var(--foreground); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; padding: 1rem 1.5rem 1.5rem; color: var(--muted-foreground); border-top: 1px solid var(--border); }
.faq-item.active .faq-answer { display: block; }
.faq-icon { transition: transform 0.3s; color: var(--primary); }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* === CATEGORIES === */
.category-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.category-title { font-weight: 600; font-size: 1rem; }
.category-description { color: var(--muted-foreground); font-size: 0.9rem; }

/* === LEGAL PAGES === */
.legal-page { max-width: 52rem; margin: 0 auto; }
.legal-content { line-height: 1.8; }
.legal-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-updated { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.legal-section p { color: var(--muted-foreground); margin-bottom: 0.75rem; }
