/* Theme CSS — generated by WebGen */
:root {
  --primary: #64748b;
  --primary-foreground: #ffffff;
  --secondary: #8b5cf6;
  --secondary-foreground: #ffffff;
  --accent: #dc2626;
  --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: 'Open Sans', 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; background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%); }
.section:nth-child(even) { background: linear-gradient(0deg, var(--background) 0%, var(--muted) 100%); }
.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); }
.blorentaviox-top_mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
@media (max-width: 767px) {
  .blorentaviox-top_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: var(--muted); color: var(--foreground); padding: 3rem 0; }
.footer .text-muted { color: var(--muted-foreground); }
.footer-link { display: block; color: var(--primary); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
.footer-link:hover { color: var(--foreground); }

/* === CTA === */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; padding: 5rem 0; }

/* === 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 === */
.blorentaviox-top_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; }
.blorentaviox-top_cookie-banner.hidden, #blorentaviox-top_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#blorentaviox-top_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
.blorentaviox-top_cookie-banner-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .blorentaviox-top_cookie-banner-inner { flex-direction: row; justify-content: space-between; } }
.blorentaviox-top_cookie-banner-text { font-size: 0.875rem; color: var(--muted-foreground); }
.blorentaviox-top_cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.blorentaviox-top_cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 60; }
.blorentaviox-top_cookie-modal.hidden, #blorentaviox-top_cookie-modal.hidden { display: none !important; }
.blorentaviox-top_cookie-modal-overlay { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 1rem; }
.blorentaviox-top_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; }
.blorentaviox-top_cookie-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.blorentaviox-top_cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.blorentaviox-top_cookie-modal-actions .btn-primary, .blorentaviox-top_cookie-modal-actions .btn-outline { flex: 1; text-align: center; }

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


/* === CLASS ALIAS FIXES (injected by engine) === */
.nav-menu { /* alias for .nav-links */ }
.nav-menu { display: flex; gap: 1.5rem; 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 === */

/* ============================================
   BLORENTAVIOXTOP — REPAIR PATCH
   ============================================ */

/* === BUTTONS === */
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* === HEADER & NAV === */
.header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 1rem 0; }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }

/* Mobile toggle — скрыт на десктопе */
[class*="mobile-menu-toggle"] { display: none !important; }
@media (max-width: 767px) {
  [class*="mobile-menu-toggle"] { display: flex !important; align-items: center; justify-content: center; }
}

/* === HERO === */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-background { position: absolute; inset: 0; z-index: 1; }
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* btn-outline на тёмном фоне hero */
.hero .btn-outline,
.hero-actions .btn-outline,
.cta-section .btn-outline,
.cta-actions .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
}
.hero .btn-outline:hover,
.hero-actions .btn-outline:hover,
.cta-section .btn-outline:hover,
.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
}

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

/* === PAGE HEADER === */
.page-header-content { max-width: 700px; margin: 0 auto; }
.page-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.page-subtitle { font-size: 1.125rem; color: var(--muted-foreground); }

/* === FEATURES === */
.features-section { padding: 5rem 0; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.feature-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.feature-content { padding: 1.5rem; }
.feature-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--card-foreground); }
.feature-description { color: var(--muted-foreground); font-size: 0.9rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }

/* Icon-box */
.icon-box { color: var(--primary); }
.icon-box i, .icon-box svg { color: var(--primary) !important; }
.icon-xl { width: 3rem; height: 3rem; }

/* === STATS === */
.stats-section { background: var(--muted); padding: 4rem 0; }
.stat-item { text-align: center; 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 PREVIEW === */
.about-preview-section { padding: 5rem 0; }
.about-preview-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .about-preview-content { grid-template-columns: 1fr; } }
.about-preview-text, .about-description { display: flex; flex-direction: column; gap: 1rem; }
.about-preview-text p, .about-description p { color: var(--muted-foreground); line-height: 1.7; }
.about-preview-image { border-radius: var(--radius); overflow: hidden; height: 400px; }
.about-preview-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === PROCESS === */
.process-section { padding: 5rem 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.process-step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; position: relative; }
.step-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.step-title { font-weight: 600; margin-bottom: 0.5rem; color: var(--foreground); }
.step-description { color: var(--muted-foreground); font-size: 0.9rem; }
.step-content { display: flex; flex-direction: column; gap: 0.5rem; }

/* === CTA === */
.cta-section { position: relative; overflow: hidden; }
.cta-background { position: absolute; inset: 0; z-index: 1; }
.cta-background img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-description { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 5rem 0; background: var(--muted); }
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-item { background: var(--card); border-radius: var(--radius); padding: 2rem; display: none; }
.testimonial-item.active { display: block; }
.testimonial-text { font-size: 1.05rem; font-style: italic; color: var(--foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; color: var(--foreground); }
.author-role { font-size: 0.875rem; color: var(--muted-foreground); }
.testimonial-content { margin-bottom: 1rem; }
.testimonial-nav { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.testimonial-prev, .testimonial-next { background: var(--primary); color: #fff; border: none; width: 2.5rem; height: 2.5rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.testimonial-prev:hover, .testimonial-next:hover { opacity: 0.8; }

/* === SERVICES === */
.service-section { padding: 5rem 0; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.service-reverse { direction: rtl; }
.service-reverse > * { direction: ltr; }
@media (max-width: 768px) { .service-row, .service-reverse { grid-template-columns: 1fr; direction: ltr; } }
.service-image { border-radius: var(--radius); overflow: hidden; height: 320px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content { display: flex; flex-direction: column; gap: 1rem; }
.service-title { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.service-description { color: var(--muted-foreground); line-height: 1.7; }
.service-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--foreground); font-size: 0.9rem; }

/* === PRICING === */
.pricing-section { padding: 5rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.pricing-header { margin-bottom: 1.5rem; }
.plan-name { font-size: 1.25rem; font-weight: 700; color: var(--card-foreground); }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 0.5rem 0; }
.plan-description { color: var(--muted-foreground); font-size: 0.875rem; }
.pricing-features { list-style: none; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--card-foreground); font-size: 0.9rem; }

/* === ABOUT PAGE === */
.story-section { padding: 5rem 0; }
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .story-content { grid-template-columns: 1fr; } }
.story-text { display: flex; flex-direction: column; gap: 1rem; }
.story-text h2 { color: var(--foreground); }
.story-description { color: var(--muted-foreground); line-height: 1.7; }
.story-image { border-radius: var(--radius); overflow: hidden; height: 400px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mission-section { padding: 5rem 0; background: var(--muted); }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.mission-card { background: var(--card); border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid var(--border); }
.mission-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--card-foreground); }
.mission-description { color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

.achievements-section { padding: 5rem 0; }
.achievements-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .achievements-content { grid-template-columns: 1fr; } }
.achievements-text { display: flex; flex-direction: column; gap: 1rem; }
.achievements-text h2 { color: var(--foreground); }
.achievement-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.achievement-item { display: flex; align-items: flex-start; gap: 1rem; }
.achievement-content { display: flex; flex-direction: column; gap: 0.25rem; }
.achievement-title { font-weight: 600; color: var(--foreground); }
.achievement-description { color: var(--muted-foreground); font-size: 0.875rem; }
.achievements-image { border-radius: var(--radius); overflow: hidden; height: 400px; }
.achievements-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.why-choose-section { padding: 5rem 0; background: var(--muted); }
.advantage-item { display: flex; flex-direction: column; gap: 0.75rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.advantage-title { font-weight: 600; color: var(--foreground); }
.advantage-description { color: var(--muted-foreground); font-size: 0.9rem; }

/* === TEAM PAGE === */
.team-intro-section { padding: 5rem 0; }
.team-intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .team-intro-content { grid-template-columns: 1fr; } }
.team-intro-text { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-foreground); }
.team-intro-image { border-radius: var(--radius); overflow: hidden; height: 380px; }
.team-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-members-section { padding: 5rem 0; background: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-member-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.member-avatar { height: 240px; overflow: hidden; }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member-info { padding: 1.5rem; }
.member-name { font-weight: 700; font-size: 1.1rem; color: var(--card-foreground); margin-bottom: 0.25rem; }
.member-role { color: var(--primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.75rem; }
.member-description { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }
.member-expertise { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.expertise-item { background: var(--muted); color: var(--foreground); font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.5rem; border-radius: 9999px; }
.team-values-section { padding: 5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.value-title { font-weight: 700; margin-bottom: 0.5rem; color: var(--card-foreground); }
.value-description { color: var(--muted-foreground); font-size: 0.875rem; }
.team-cta { padding: 5rem 0; background: var(--muted); text-align: center; }
.team-preview-section { padding: 5rem 0; }
.team-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* === CONTACT PAGE === */
.contact-section { padding: 5rem 0; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-content { grid-template-columns: 1fr; } }
.contact-info-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-label { font-weight: 600; font-size: 0.875rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { color: var(--foreground); }
.contact-link { color: var(--primary); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.contact-details { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-options-section { padding: 5rem 0; background: var(--muted); }
.contact-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.contact-option-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.option-title { font-weight: 700; margin-bottom: 0.5rem; color: var(--card-foreground); }
.option-description { color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 1rem; }
.response-time-info { padding: 5rem 0; text-align: center; }
.response-details { max-width: 600px; margin: 0 auto; }
.response-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--foreground); }
.response-text { color: var(--muted-foreground); }

/* === FORM === */
.form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--foreground); }
.form-subtitle { color: var(--muted-foreground); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-actions { margin-top: 1rem; }
.success-content { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

/* === FOOTER === */
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-content { grid-template-columns: 1fr; } }
.footer-column { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-title { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.footer-info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { text-decoration: none; font-size: 0.875rem; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.7; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.875rem; }
.footer-contact a { text-decoration: none; transition: opacity 0.2s; }
.footer-contact-injected { margin-top: 0.5rem; }
.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; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.legal-links a { text-decoration: none; font-size: 0.8rem; transition: opacity 0.2s; }

/* === MISC === */
.intro-description { color: var(--muted-foreground); line-height: 1.7; }
.info-title { font-weight: 600; color: var(--foreground); }
.info-subtitle { color: var(--muted-foreground); font-size: 0.875rem; }
.highlight-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.careers-section { padding: 5rem 0; background: var(--muted); }
.careers-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .careers-content { grid-template-columns: 1fr; } }
.careers-text { display: flex; flex-direction: column; gap: 1rem; }
.careers-description { color: var(--muted-foreground); line-height: 1.7; }
.careers-highlights { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.careers-image { border-radius: var(--radius); overflow: hidden; height: 380px; }
.careers-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expertise-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
