/* 
 * Generated Site Styles
 */

:root {
  --color-primary: hsl(200, 50%, 13%);
  --color-primary-light: hsl(200, 50%, 20%);
  --color-accent: hsl(142, 71%, 45%);
  --color-accent-dark: hsl(142, 71%, 35%);
  --color-text: hsl(0, 0%, 20%);
  --color-text-muted: hsl(0, 0%, 45%);
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-alt: hsl(0, 0%, 97%);
  --color-border: hsl(0, 0%, 90%);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-cta {
  background-color: var(--color-accent);
  color: var(--color-primary);
}


/* Content Block */
.content-block {
  padding: 4rem 1.5rem;
  background-color: var(--color-bg);
}

.content-container {
  margin: 0 auto;
}

.content-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.content-body {
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body a {
  color: var(--color-accent);
}

.content-body img {
  max-width: 100%;
  width: 100%;
  height: auto;
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 30, 41, 0.8);
}

.hero-decorative {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  opacity: 0.1;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
}

.hero-shape-1 {
  top: 5rem;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  transform: rotate(12deg);
}

.hero-shape-2 {
  bottom: 10rem;
  right: 10rem;
  width: 12rem;
  height: 12rem;
  transform: rotate(-6deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-subheadline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


/* Process Steps */
.process-steps-section { padding: 5rem 1.5rem; background-color: var(--color-bg); }
.process-steps-container { max-width: 72rem; margin: 0 auto; }
.process-steps-header { text-align: center; margin-bottom: 4rem; }
.process-steps-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); }
.process-steps-subtitle { margin-top: 1rem; color: var(--color-text-muted); max-width: 40rem; margin-inline: auto; }
.process-steps-list { display: flex; flex-direction: column; gap: 2rem; }
.step-card-link { text-decoration: none; color: inherit; }
.process-step-card { display: grid; grid-template-columns: 1fr; background: var(--color-bg-alt); border-radius: 1.5rem; overflow: hidden; transition: box-shadow 0.2s; }
.process-step-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .process-step-card { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-step-card.reverse { direction: rtl; } .process-step-card.reverse > * { direction: ltr; } }
.step-content { padding: 2rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.step-badge { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(59,130,246,0.1); color: #3B82F6; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; margin-bottom: 1rem; width: fit-content; }
.step-title { font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 1rem; }
.step-description { font-size: 1.125rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.step-features { list-style: none; padding: 0; }
.step-feature { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text); margin-bottom: 0.5rem; }
.step-feature svg { width: 1.25rem; height: 1.25rem; color: #22C55E; flex-shrink: 0; }
.step-icon-area { min-height: 18rem; display: flex; align-items: center; justify-content: center; }
.step-icon { display: flex; align-items: center; justify-content: center; }
.step-icon svg { width: 5rem; height: 5rem; }
.step-icon-placeholder { color: rgba(255,255,255,0.3); }
.step-icon-placeholder svg { width: 4rem; height: 4rem; }


/* Gradient Features */
.gradient-features-section { padding: 5rem 1.5rem; background-color: #111827; }
.gradient-features-container { max-width: 72rem; margin: 0 auto; }
.gradient-features-header { text-align: center; margin-bottom: 3rem; }
.gradient-features-badge { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; border-radius: 9999px; margin-bottom: 1rem; }
.gradient-features-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: white; }
.gradient-features-subtitle { margin-top: 1rem; color: rgba(255,255,255,0.6); max-width: 40rem; margin-inline: auto; }
.gradient-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .gradient-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gradient-features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gradient-features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.gradient-card-link { text-decoration: none; color: inherit; }
.gradient-card { padding: 1.5rem; border-radius: 1rem; height: 100%; display: flex; flex-direction: column; transition: transform 0.2s; cursor: pointer; }
.gradient-card:hover { transform: scale(1.05); }
.gradient-card-badge { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.gradient-card-badge > div { width: 2rem; height: 2rem; background: rgba(255,255,255,0.2); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.gradient-card-badge svg { width: 1rem; height: 1rem; color: white; }
.gradient-card-badge span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.gradient-card-title { font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.gradient-card-description { color: rgba(255,255,255,0.8); margin-bottom: 1rem; flex-grow: 1; }
.gradient-card-image { margin-top: auto; border-radius: 0.5rem; overflow: hidden; flex-shrink: 0; max-height: 10rem; }
.gradient-card-image img { width: 100%; height: 10rem; max-height: 10rem; object-fit: cover; display: block; }
.gradient-card-image-placeholder { height: 8rem; background: rgba(255,255,255,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


/* Technology Showcase */
.tech-showcase-section { padding: 5rem 1.5rem; background-color: var(--color-bg-alt); }
.tech-showcase-container { max-width: 72rem; margin: 0 auto; }
.tech-showcase-header { text-align: center; margin-bottom: 3rem; }
.tech-showcase-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); }
.tech-showcase-subtitle { margin-top: 1rem; color: var(--color-text-muted); max-width: 40rem; margin-inline: auto; }
/* Technology Filter Buttons */
.tech-filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.tech-filter-btn { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text); cursor: pointer; transition: all 0.2s; }
.tech-filter-btn:hover { background: var(--color-bg-alt); }
.tech-filter-btn.active { background: var(--color-accent, #3B82F6); color: white; border-color: var(--color-accent, #3B82F6); }
.tech-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .tech-showcase-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .tech-showcase-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .tech-showcase-grid { grid-template-columns: repeat(6, 1fr); } }
.tech-item-link { text-decoration: none; color: inherit; }
.tech-item { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; background: var(--color-bg); border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: transform 0.2s; cursor: pointer; }
.tech-item:hover { transform: scale(1.05); }
.tech-logo { width: 3rem; height: 3rem; object-fit: contain; margin-bottom: 0.5rem; }
.tech-icon { width: 3rem; height: 3rem; background: var(--color-bg-alt); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.tech-icon svg { width: 1.5rem; height: 1.5rem; color: var(--color-text-muted); }
.tech-name { font-size: 0.875rem; font-weight: 500; color: var(--color-text); text-align: center; }


/* Split Feature List */
.split-feature-list-section { padding: 5rem 1.5rem; background-color: var(--color-bg-alt); }
.split-feature-list-container { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .split-feature-list-container { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-feature-left { position: sticky; top: 2rem; align-self: start; }
@media (max-width: 1023px) { .split-feature-left { position: static; } }
.split-feature-badge { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(59,130,246,0.1); color: #3B82F6; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; margin-bottom: 1rem; }
.split-feature-title-main { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); margin-bottom: 1.5rem; }
.split-feature-description { font-size: 1.125rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.split-feature-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--color-bg); border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.trust-badge svg { width: 1.25rem; height: 1.25rem; color: var(--color-accent); }
.trust-badge span { font-size: 0.875rem; font-weight: 500; color: var(--color-text); }
.trust-badge-img { height: 2rem; }
.split-feature-right { display: flex; flex-direction: column; gap: 1.5rem; }
.split-feature-card { display: flex; gap: 1rem; padding: 1.5rem; background: var(--color-bg); border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: box-shadow 0.2s; }
.split-feature-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.split-feature-icon { width: 3rem; height: 3rem; background: rgba(59,130,246,0.1); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.split-feature-icon svg { width: 1.5rem; height: 1.5rem; color: #3B82F6; }
.split-feature-img { width: 3rem; height: 3rem; border-radius: 0.75rem; object-fit: cover; }
.split-feature-title { font-size: 1.125rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.5rem; }
.split-feature-desc { font-size: 0.875rem; color: var(--color-text-muted); }


/* Large Feature Cards */
.large-features-section { padding: 5rem 1.5rem; background-color: var(--color-bg); }
.large-features-container { max-width: 72rem; margin: 0 auto; }
.large-features-header { text-align: center; margin-bottom: 3rem; }
.large-features-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); }
.large-features-subtitle { margin-top: 1rem; color: var(--color-text-muted); max-width: 40rem; margin-inline: auto; }
.large-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .large-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .large-features-grid { grid-template-columns: repeat(3, 1fr); } }
.large-feature-link { text-decoration: none; color: inherit; }
.large-feature-card { background: var(--color-bg-alt); border-radius: 1rem; overflow: hidden; transition: all 0.2s; min-height: 15rem; }
.large-feature-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); background: var(--color-border); }
.large-feature-card.large { grid-column: span 1; min-height: 18rem; display: flex; }
@media (min-width: 768px) { .large-feature-card.large { grid-column: span 2; } }
.large-feature-card.large .large-feature-content { flex: 1; }
.large-feature-card.large .large-feature-image { flex: 1; }
.large-feature-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.large-feature-icon { width: 3rem; height: 3rem; background: rgba(59,130,246,0.1); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background 0.2s; }
.large-feature-card:hover .large-feature-icon { background: rgba(59,130,246,0.2); }
.large-feature-icon svg { width: 1.5rem; height: 1.5rem; color: #3B82F6; }
.large-feature-title { font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; transition: color 0.2s; }
.large-feature-card:hover .large-feature-title { color: #3B82F6; }
.large-feature-desc { color: var(--color-text-muted); }
.large-feature-arrow { margin-top: 1rem; color: #3B82F6; font-weight: 500; }
.large-feature-image { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1)); display: flex; align-items: center; justify-content: center; min-height: 7rem; }
.large-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.large-feature-image-placeholder svg { width: 3rem; height: 3rem; color: #3B82F6; opacity: 0.3; }


/* CTA Footer */
.cta-footer { padding: 5rem 1.5rem; }
.cta-footer-dark { background-color: var(--color-primary); }
.cta-footer-light { background-color: var(--color-accent); }
.cta-container { max-width: 56rem; margin: 0 auto; text-align: center; }
.cta-headline { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; letter-spacing: -0.025em; }
.cta-footer-dark .cta-headline { color: white; }
.cta-footer-light .cta-headline { color: var(--color-primary); }
.cta-subheadline { margin-top: 1rem; font-size: 1.125rem; }
.cta-footer-dark .cta-subheadline { color: rgba(255, 255, 255, 0.8); }
.cta-footer-light .cta-subheadline { color: var(--color-primary); opacity: 0.8; }
.cta-buttons { margin-top: 2rem; }


/* Featured Case Study */
.featured-case-study-section { padding: 5rem 1.5rem; background-color: var(--color-bg); }
.featured-case-study-container { max-width: 72rem; margin: 0 auto; }
.featured-case-study-header { text-align: center; margin-bottom: 3rem; }
.featured-case-study-header:empty { display: none; }
.featured-case-study-badge { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(59,130,246,0.1); color: #3B82F6; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; margin-bottom: 1rem; }
.featured-case-study-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); }
.featured-case-study-subtitle { margin-top: 1rem; color: var(--color-text-muted); max-width: 40rem; margin-inline: auto; font-size: 1.125rem; }
.featured-case-study-cards { display: flex; flex-direction: column; gap: 2rem; }
.featured-case-study-card { background: var(--color-bg-alt); border-radius: 1.5rem; overflow: hidden; display: grid; grid-template-columns: 1fr; border: 1px solid var(--color-border); }
@media (min-width: 1024px) { .featured-case-study-card { grid-template-columns: 1fr 1fr; } }
.featured-case-study-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.featured-case-logo { height: auto; max-height: 3rem; width: auto; margin-bottom: 1.5rem; object-fit: contain; }
.featured-case-company { font-size: 1.75rem; font-weight: 600; color: var(--color-text); margin-bottom: 1.5rem; }
.featured-case-quote { font-size: 1.5rem; font-weight: 500; color: var(--color-text); line-height: 1.4; margin-bottom: 2rem; }
.featured-case-quote:empty { display: none; }
.featured-case-stat { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--color-bg); border-radius: 0.75rem; margin-bottom: 2rem; width: fit-content; }
.featured-case-stat .stat-icon { width: 2.5rem; height: 2.5rem; background: rgba(34,197,94,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.featured-case-stat .stat-icon svg { width: 1.25rem; height: 1.25rem; color: #22C55E; }
.featured-case-stat .stat-value { font-size: 1.5rem; font-weight: 700; color: var(--color-text); display: block; }
.featured-case-stat .stat-label { font-size: 0.875rem; color: var(--color-text-muted); }
.featured-case-person { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.featured-case-person:empty { display: none; }
.featured-case-person-img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; }
.featured-case-person-placeholder { width: 3rem; height: 3rem; border-radius: 50%; background: var(--color-border); display: flex; align-items: center; justify-content: center; }
.featured-case-person-placeholder svg { width: 1.5rem; height: 1.5rem; color: var(--color-text-muted); }
.featured-case-person .person-name { font-weight: 500; color: var(--color-text); }
.featured-case-person .person-title { font-size: 0.875rem; color: var(--color-text-muted); }
.featured-case-description { font-size: 1rem; line-height: 1.6; color: var(--color-text); margin-bottom: 1.5rem; }
.featured-case-description p { margin-bottom: 1rem; }
.featured-case-description ul, .featured-case-description ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.featured-case-description li { margin-bottom: 0.5rem; }
.featured-case-cta { align-self: flex-start; }
.featured-case-image { background: linear-gradient(135deg, #3B82F6, #8B5CF6); min-height: 20rem; display: flex; align-items: center; justify-content: center; }
.featured-case-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-case-placeholder { color: rgba(255,255,255,0.3); }
.featured-case-placeholder svg { width: 4rem; height: 4rem; }


/* Data Flow Visual */
.data-flow-section { padding: 5rem 1.5rem; background-color: var(--color-bg); }
.data-flow-container { max-width: 72rem; margin: 0 auto; }
.data-flow-title { text-align: center; font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); margin-bottom: 3rem; }
.data-flow-steps { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .data-flow-steps { flex-direction: row; align-items: stretch; justify-content: center; } }
.data-flow-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; max-width: 18rem; }
@media (min-width: 768px) { .data-flow-item { flex-direction: row; flex: 1; max-width: none; } }
.data-flow-step { flex: 1; padding: 1.5rem; background-color: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 1rem; text-align: center; }
.data-flow-step-number { width: 2.5rem; height: 2.5rem; border-radius: 50%; background-color: var(--color-accent); color: white; font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.data-flow-step-label { font-weight: 600; color: var(--color-text); margin-bottom: 0.25rem; }
.data-flow-step-description { font-size: 0.875rem; color: var(--color-text-muted); }
.data-flow-arrow { color: var(--color-accent); font-size: 1.5rem; flex-shrink: 0; }
.data-flow-arrow-down { display: block; }
.data-flow-arrow-right { display: none; }
@media (min-width: 768px) { 
  .data-flow-arrow-down { display: none; } 
  .data-flow-arrow-right { display: block; }
}


/* Related Posts */
.related-posts-section { padding: 5rem 1.5rem; background-color: var(--color-bg-alt); }
.related-posts-container { max-width: 72rem; margin: 0 auto; }
.related-posts-title { font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 2rem; }
.related-posts-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .related-posts-grid { grid-template-columns: repeat(3, 1fr); } }
.related-post-card { display: block; background-color: var(--color-bg); border-radius: 1rem; overflow: hidden; border: 1px solid var(--color-border); transition: all 0.2s ease; text-decoration: none; }
.related-post-card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.related-post-image { width: 100%; height: 8rem; object-fit: cover; border-radius: 0.75rem 0.75rem 0 0; }
.related-post-title { font-size: 1rem; font-weight: 600; color: var(--color-text); padding: 1.25rem 1.25rem 0.5rem; text-decoration: none; }
.related-post-card:hover .related-post-title { color: var(--color-accent); }
.related-post-excerpt { font-size: 0.875rem; color: var(--color-text-muted); padding: 0 1.25rem 1.25rem; text-decoration: none; }
.related-posts-empty { color: var(--color-text-muted); text-align: center; }


/* Social Proof Stats */
.social-proof-stats {
  padding: 5rem 1.5rem;
  background-color: var(--color-bg);
}

.stats-container { max-width: 72rem; margin: 0 auto; }
.stats-title { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card { text-align: center; padding: 2rem; border-radius: 1rem; background-color: var(--color-bg-alt); border: 1px solid var(--color-border); }
.stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--color-accent); letter-spacing: -0.025em; }
.stat-label { margin-top: 0.75rem; font-size: 1.125rem; font-weight: 600; color: var(--color-text); }
.stat-description { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-text-muted); }


/* Bento Features */
.bento-features {
  padding: 5rem 1.5rem;
  background-color: var(--color-bg-alt);
}

.bento-container {
  max-width: 72rem;
  margin: 0 auto;
}

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

.bento-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

.bento-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 640px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
}

.bento-card {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  min-height: 180px;
}

.bento-card:hover { transform: scale(1.02); }

.bento-card-large {
  background-color: var(--color-primary);
  color: white;
}

@media (min-width: 640px) {
  .bento-card-large { grid-column: span 2; grid-row: span 2; }
}

.bento-card-medium {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .bento-card-medium { grid-column: span 2; }
}

.bento-card-small {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
}

.bento-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.bento-card-large .bento-icon { background-color: rgba(255, 255, 255, 0.1); color: white; }
.bento-card-medium .bento-icon, .bento-card-small .bento-icon { background-color: rgba(74, 222, 128, 0.1); color: var(--color-accent); }

.bento-card-title { font-weight: 600; }
.bento-card-large .bento-card-title { font-size: 1.25rem; color: white; }
.bento-card-medium .bento-card-title, .bento-card-small .bento-card-title { font-size: 1rem; color: var(--color-text); }

.bento-card-description { font-size: 0.875rem; margin-top: 0.5rem; }
.bento-card-large .bento-card-description { color: rgba(255, 255, 255, 0.7); }
.bento-card-medium .bento-card-description, .bento-card-small .bento-card-description { color: var(--color-text-muted); }


/* Team Grid */
.team-grid-section { padding: 5rem 1.5rem; background-color: var(--color-bg); }
.team-container { max-width: 72rem; margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 4rem; }
.team-title { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--color-text); }
.team-subtitle { margin-top: 1rem; font-size: 1.125rem; color: var(--color-text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-member { text-align: center; padding: 2rem; background-color: var(--color-bg-alt); border-radius: 1rem; }
.team-member-image { width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.team-member-avatar { width: 6rem; height: 6rem; border-radius: 50%; background-color: var(--color-primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 600; margin: 0 auto; }
.team-member-name { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; color: var(--color-text); }
.team-member-title { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-text-muted); }
.team-member-bio { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-text-muted); }


    /* Header Base Styles */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--header-bg, #ffffff);
      color: var(--header-text, #1a1a1a);
    }
    
    .header-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    
    .header-logo a {
      display: flex;
      align-items: center;
    }
    
    .header-logo img {
      height: 40px;
      width: auto;
    }
    
    .header-logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: inherit;
      text-decoration: none;
    }
    
    .header-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    
    .header-nav-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .menu-link {
      display: block;
      padding: 0.5rem 1rem;
      color: inherit;
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 500;
      border-radius: 0.375rem;
      transition: background-color 0.15s, color 0.15s;
    }
    
    .menu-link:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }
    
    .menu-button {
      display: inline-flex;
      align-items: center;
      padding: 0.625rem 1.25rem;
      font-size: 0.9375rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 0.5rem;
      transition: all 0.15s;
    }
    
    .menu-button-primary {
      background-color: var(--color-accent, hsl(142, 71%, 45%));
      color: var(--color-primary, hsl(200, 50%, 13%));
    }
    
    .menu-button-primary:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }
    
    /* Simple Dropdown Styles */
    .menu-dropdown {
      position: relative;
    }
    
    .menu-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.5rem 1rem;
      background: none;
      border: none;
      color: inherit;
      font-size: 0.9375rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 0.375rem;
      transition: background-color 0.15s;
    }
    
    .menu-dropdown-trigger:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }
    
    .menu-dropdown-arrow {
      transition: transform 0.15s;
    }
    
    .menu-dropdown:hover .menu-dropdown-arrow,
    .menu-mega:hover .menu-dropdown-arrow {
      transform: rotate(180deg);
    }
    
    .menu-dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: white;
      border-radius: 0.75rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 0.5rem;
      list-style: none;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.2s;
    }
    
    .menu-dropdown:hover .menu-dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .menu-dropdown-content li {
      margin: 0;
    }
    
    .menu-dropdown-content .menu-link {
      display: block;
      padding: 0.625rem 1rem;
      border-radius: 0.5rem;
      color: #1a1a1a;
    }
    
    .menu-dropdown-content .menu-link:hover {
      background-color: #f3f4f6;
    }
    
    /* Mega Dropdown Base */
    .menu-mega {
      position: static;
    }
    
    .mega-dropdown-panel {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: white;
      border-radius: 1rem;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.25s ease;
      min-width: 500px;
      max-width: 900px;
    }
    
    .menu-mega:hover .mega-dropdown-panel {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    
    /* Simple Links Template */
    .mega-simple-links {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .mega-link-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: #1a1a1a;
      transition: background-color 0.15s;
    }
    
    .mega-link-item:hover {
      background-color: #f3f4f6;
    }
    
    .mega-link-icon {
      color: var(--header-accent, #10B981);
      flex-shrink: 0;
    }
    
    .mega-link-content {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }
    
    .mega-link-title {
      font-weight: 600;
      font-size: 0.9375rem;
    }
    
    .mega-link-description {
      font-size: 0.8125rem;
      color: #6b7280;
    }
    
    /* Featured Left Links Template */
    .mega-featured-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 1.5rem;
    }
    
    .mega-featured-card {
      padding: 1.5rem;
      border-radius: 0.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
    }
    
    .mega-featured-dark {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
    }
    
    .mega-featured-accent {
      background: linear-gradient(135deg, var(--header-accent, #10B981) 0%, #059669 100%);
      color: white;
    }
    
    .mega-featured-light {
      background: #f3f4f6;
      color: #1a1a1a;
    }
    
    .mega-featured-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    .mega-featured-inner {
      height: 100%;
    }
    
    .mega-featured-title {
      font-size: 1.125rem;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
    }
    
    .mega-featured-description {
      font-size: 0.875rem;
      opacity: 0.9;
      line-height: 1.5;
      margin: 0;
    }
    
    .mega-featured-badges {
      display: flex;
      gap: 0.5rem;
      margin-top: auto;
      padding-top: 1rem;
    }
    
    .mega-badge {
      font-size: 0.6875rem;
      font-weight: 600;
      padding: 0.25rem 0.5rem;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.025em;
    }
    
    .mega-links-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.25rem;
    }
    
    .mega-link-card {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: #1a1a1a;
      transition: all 0.15s;
    }
    
    .mega-link-card:hover {
      background-color: #f3f4f6;
    }
    
    /* Product Columns Template */
    .mega-products-layout {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .mega-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    
    .mega-product-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: #1a1a1a;
      border-radius: 0.75rem;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      transition: all 0.15s;
    }
    
    .mega-product-card:hover {
      border-color: var(--header-accent, #10B981);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .mega-product-image {
      height: 120px;
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .mega-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mega-product-placeholder {
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    }
    
    .mega-product-content {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .mega-product-title {
      font-weight: 600;
      font-size: 0.9375rem;
    }
    
    .mega-product-description {
      font-size: 0.8125rem;
      color: #6b7280;
      line-height: 1.4;
    }
    
    .mega-quick-links {
      display: flex;
      gap: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #e5e7eb;
    }
    
    .mega-quick-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: #f9fafb;
      border-radius: 0.5rem;
      text-decoration: none;
      color: #1a1a1a;
      font-size: 0.875rem;
      transition: all 0.15s;
    }
    
    .mega-quick-link:hover {
      background: #f3f4f6;
    }
    
    .mega-quick-icon {
      color: var(--header-accent, #10B981);
    }
    
    .mega-quick-title {
      font-weight: 500;
    }
    
    .mega-quick-description {
      color: #6b7280;
      font-size: 0.75rem;
    }
    
    /* Icon Grid Template */
    .mega-icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }
    
    .mega-grid-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.25rem 1rem;
      border-radius: 0.75rem;
      text-decoration: none;
      color: #1a1a1a;
      transition: all 0.15s;
    }
    
    .mega-grid-item:hover {
      background: #f3f4f6;
    }
    
    .mega-grid-icon {
      color: var(--header-accent, #10B981);
      margin-bottom: 0.5rem;
    }
    
    .mega-grid-title {
      font-weight: 600;
      font-size: 0.875rem;
    }
    
    .mega-grid-description {
      font-size: 0.75rem;
      color: #6b7280;
      margin-top: 0.25rem;
    }
    
    /* Two Column Links Template */
    .mega-two-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .mega-column-heading {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6b7280;
      margin: 0 0 0.75rem 0;
    }
    
    .mega-column-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .mega-column-links li {
      margin-bottom: 0.375rem;
    }
    
    .mega-column-links a {
      display: block;
      padding: 0.5rem 0;
      color: #1a1a1a;
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 500;
      transition: color 0.15s;
    }
    
    .mega-column-links a:hover {
      color: var(--header-accent, #10B981);
    }
    
    /* Featured with Footer Template */
    .mega-featured-footer-layout {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .mega-featured-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .mega-featured-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
      border-radius: 0.75rem;
      background: #f9fafb;
      text-decoration: none;
      color: #1a1a1a;
      transition: all 0.15s;
    }
    
    .mega-featured-item:hover {
      background: #f3f4f6;
    }
    
    .mega-featured-icon {
      color: var(--header-accent, #10B981);
      flex-shrink: 0;
    }
    
    .mega-featured-content {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .mega-footer-links {
      display: flex;
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px solid #e5e7eb;
    }
    
    .mega-footer-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1rem;
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 0.5rem;
      text-decoration: none;
      color: #1a1a1a;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.15s;
    }
    
    .mega-footer-link:hover {
      border-color: var(--header-accent, #10B981);
      background: #f9fafb;
    }
    
    .mega-footer-icon {
      color: var(--header-accent, #10B981);
    }
    
    /* Floating Header */
    .floating-header {
      position: fixed;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 2rem);
      max-width: 1200px;
      border-radius: 1rem;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .floating-header .header-container {
      padding: 0.75rem 1.5rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      padding: 4px;
      background: none;
      border: none;
      cursor: pointer;
      color: inherit;
      -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--color-text, #000);
      border-radius: 1px;
      transition: transform 0.2s;
    }
    
    .mobile-menu {
      display: none;
      padding: 1rem 2rem 2rem;
    }
    
    .mobile-menu.is-open {
      display: block;
      max-height: calc(100vh - 4rem);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .mobile-nav ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }
    
    .mobile-nav li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-nav .menu-link {
      padding: 0.875rem 0;
      display: block;
    }
    
    .mobile-cta {
      padding-top: 1rem;
    }
    
    @media (max-width: 768px) {
      .header-nav,
      .header-cta {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: flex;
      }
      
      .mobile-menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
      }
      
      .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
      }
      
      .mobile-menu-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
      }
      
      .mobile-menu.is-open {
        display: block;
      }
      
      .floating-header {
        width: calc(100% - 1rem);
        top: 0.5rem;
      }
      
      /* Mobile Menu Dropdown Styles */
      .mobile-menu .menu-dropdown,
      .mobile-menu .menu-mega {
        position: relative;
      }
      
      .mobile-menu .menu-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.875rem 0;
        border-radius: 0;
        font-size: 1rem;
      }
      
      .mobile-menu .menu-dropdown-arrow {
        transition: transform 0.2s;
      }
      
      .mobile-menu .menu-dropdown.is-open .menu-dropdown-arrow,
      .mobile-menu .menu-mega.is-open .menu-dropdown-arrow {
        transform: rotate(180deg);
      }
      
      /* Hide hover-based dropdowns on mobile */
      .mobile-menu .menu-dropdown .menu-dropdown-content,
      .mobile-menu .menu-mega .mega-dropdown-panel {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.02);
        transition: max-height 0.3s, opacity 0.2s, padding 0.2s;
      }
      
      .mobile-menu .menu-dropdown.is-open .menu-dropdown-content,
      .mobile-menu .menu-mega.is-open .mega-dropdown-panel {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0 1rem;
      }
      
      /* Mobile Mega Dropdown Panel Styles */
      .mobile-menu .mega-dropdown-panel {
        background: transparent;
        min-width: auto;
        width: 100%;
      }
      
      /* Mobile Simple Links */
      .mobile-menu .mega-simple-links {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      
      .mobile-menu .mega-link-item {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
      }
      
      /* Mobile Featured Layout */
      .mobile-menu .mega-featured-layout {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      
      .mobile-menu .mega-featured-card {
        padding: 1rem;
        border-radius: 0.75rem;
      }
      
      .mobile-menu .mega-links-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      
      .mobile-menu .mega-link-card {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
      }
      
      /* Mobile Products Layout */
      .mobile-menu .mega-products-layout {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      
      .mobile-menu .mega-products-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .mobile-menu .mega-product-card {
        padding: 0.75rem;
        border-radius: 0.5rem;
      }
      
      .mobile-menu .mega-quick-links {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }
      
      .mobile-menu .mega-quick-link {
        padding: 0.5rem;
        border-radius: 0.5rem;
      }
      
      /* Mobile Icon Grid */
      .mobile-menu .mega-icon-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }
      
      .mobile-menu .mega-grid-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
      }
      
      .mobile-menu .mega-grid-icon {
        margin-bottom: 0;
      }
      
      /* Mobile Two Columns */
      .mobile-menu .mega-two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .mobile-menu .mega-column {
        padding: 0 0.5rem;
      }
      
      .mobile-menu .mega-column-heading {
        margin-bottom: 0.5rem;
      }
      
      .mobile-menu .mega-column-links a {
        padding: 0.625rem 0;
      }
      
      /* Mobile Featured with Footer */
      .mobile-menu .mega-featured-footer-layout {
        gap: 1rem;
      }
      
      .mobile-menu .mega-featured-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }
      
      .mobile-menu .mega-featured-item {
        padding: 1rem;
      }
      
      .mobile-menu .mega-footer-links {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .mobile-menu .mega-footer-link {
        justify-content: center;
      }
    }
    
    /* Footer Styles */
    .site-footer {
      background-color: var(--footer-bg, hsl(200, 50%, 13%));
      color: var(--footer-text, #ffffff);
      padding: 4rem 0 2rem;
    }
    
    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-logo img {
      height: 40px;
      width: auto;
    }
    
    .footer-company-name {
      font-size: 1.5rem;
      font-weight: 700;
    }
    
    .footer-description {
      font-size: 0.875rem;
      opacity: 0.7;
      line-height: 1.6;
      max-width: 280px;
    }
    
    .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 2rem;
    }
    
    .footer-column-heading {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0 0 1rem 0;
      opacity: 0.6;
    }
    
    .footer-column-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-column-links li {
      margin-bottom: 0.625rem;
    }
    
    .footer-column-links a {
      color: inherit;
      text-decoration: none;
      font-size: 0.9375rem;
      opacity: 0.8;
      transition: opacity 0.15s;
    }
    
    .footer-column-links a:hover {
      opacity: 1;
      color: var(--footer-accent, #10B981);
    }
    
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
    }
    
    .footer-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: inherit;
      transition: all 0.15s;
    }
    
    .footer-social-link:hover {
      background: var(--footer-accent, #10B981);
      transform: translateY(-2px);
    }
    
    .footer-social-link svg {
      width: 18px;
      height: 18px;
    }
    
    .footer-legal {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
    }
    
    .footer-legal-links {
      display: flex;
      gap: 1.5rem;
    }
    
    .footer-legal-links a {
      color: inherit;
      text-decoration: none;
      font-size: 0.8125rem;
      opacity: 0.6;
      transition: opacity 0.15s;
    }
    
    .footer-legal-links a:hover,
    .footer-legal-button:hover {
      opacity: 1;
    }
    
    .footer-legal-button {
      background: none;
      border: none;
      padding: 0;
      color: inherit;
      text-decoration: none;
      font-size: 0.8125rem;
      font-weight: 400;
      opacity: 0.6;
      cursor: pointer;
      transition: opacity 0.15s;
      font-family: inherit;
    }
    
    .footer-copyright {
      font-size: 0.8125rem;
      opacity: 0.5;
    }
    
    .footer-social-badges-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 2rem;
    }
    
    .footer-badges {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .footer-badge {
      max-width: 120px;
      max-height: 36px;
      overflow: hidden;
    }
    
    .footer-badge iframe {
      max-width: 100%;
      max-height: 36px;
      transform: scale(0.8);
      transform-origin: left center;
    }
    
    .footer-badge img {
      max-width: 100%;
      height: auto;
      max-height: 36px;
    }
    
    @media (max-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .footer-columns {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .footer-social-badges-row {
        flex-direction: column;
        gap: 1.5rem;
      }
      
      .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .footer-legal {
        align-items: center;
      }
      
      .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
    
    @media (max-width: 480px) {
      .footer-columns {
        grid-template-columns: 1fr;
      }
    }
  

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-flex;
  margin-top: 1rem;
}

.lang-switcher-current {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s;
}

.lang-switcher-current:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.lang-label {
  font-weight: 500;
}

.lang-arrow {
  transition: transform 0.2s;
}

.lang-switcher.is-open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  min-width: 100%;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.15s;
  margin-bottom: 0.5rem;
}

.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s;
}

.lang-option:hover {
  background: #f3f4f6;
}

/* Style variations */
.lang-switcher[data-style="flags"] .lang-switcher-current,
.lang-switcher[data-style="flags"] .lang-option {
  padding: 0.5rem;
}

.lang-switcher[data-style="labels"] .lang-flag {
  display: none;
}
