@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --brand-dark-1: #193133;
  --brand-dark-2: #004D43;
  --primary: #8F93FF;
  --green: #D0FF71;
  --accent: #67E6BA;
  --brand-lilac: #8F93FF;
  --brand-lilac-light: #EBEEFF;
  --brand-almost-black: #231F20;
  --brand-gray: #F1F2F2;
  --shadow-card: 0 2px 20px rgba(25,49,51,0.08);
  --shadow-card-hover: 0 6px 30px rgba(25,49,51,0.12);
  --radius: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background-color: var(--brand-dark-1); color: white; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { letter-spacing: -0.025em; }
p,h1,h2,h3,h4,h5,h6,li { overflow-wrap: break-word; }
a { text-decoration: none; }
button,input,select,textarea { font-family: 'DM Sans', sans-serif; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background-color: transparent; transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease; }
.site-header.scrolled { background-color: rgba(25,49,51,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.site-header .container { padding-left: 0.5rem; padding-right: 0.5rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .header-inner { height: 80px; } }
.header-logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 40px; } }
.header-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.nav-link { padding: 0.5rem 0.75rem; font-size: 15px; font-weight: 400; border-radius: 0.375rem; color: #F1F2F2; transition: color 0.2s; }
.nav-link:hover { color: white; text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 4px; }
.nav-link.active { color: var(--primary); }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }
.mobile-toggle { display: flex; padding: 0.5rem; color: var(--primary); background: none; border: none; cursor: pointer; line-height: 0; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-menu { display: none; background-color: rgba(25,49,51,0.97); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu nav { padding: 1.5rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu .nav-link { padding: 0.75rem 1rem; font-size: 1rem; font-weight: 500; border-radius: 0.5rem; display: block; }
.mobile-menu .nav-link:hover { background-color: rgba(255,255,255,0.05); text-decoration: none; color: white; }
.mobile-menu .nav-link.active { background-color: rgba(143,147,255,0.1); }
.mobile-menu-cta { padding: 0.5rem 1rem 1.5rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; font-size: 0.875rem; border-radius: 9999px; padding: 0.625rem 1.25rem; cursor: pointer; transition: all 0.2s ease; border: 2px solid transparent; white-space: nowrap; line-height: 1.5; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn svg { flex-shrink: 0; }
.btn-hero { background-color: var(--primary); color: white; border-color: var(--primary); }
.btn-hero:hover { background-color: #7b7fef; border-color: #7b7fef; }
.btn-hero-outline { background-color: var(--green); color: var(--brand-dark-1); border-color: var(--green); }
.btn-hero-outline:hover { background-color: #bbef5a; border-color: #bbef5a; }
.btn-green { background-color: rgba(208,255,113,0.6); color: var(--brand-dark-1); border-color: rgba(208,255,113,0.8); }
.btn-green:hover { background-color: rgba(208,255,113,0.8); border-color: var(--green); }
.btn-outline { background-color: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background-color: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-outline-white { background-color: rgba(255,255,255,0.08); color: white; border-color: white; }
.btn-outline-white:hover { background-color: rgba(255,255,255,0.18); }
.btn-outline-light { background-color: rgba(0,77,67,0.08); color: var(--brand-dark-2); border-color: var(--brand-dark-2); }
.btn-outline-light:hover { background-color: rgba(0,77,67,0.18); }
.header-cta .btn-hero { background-color: var(--primary); border-color: var(--primary); backdrop-filter: none; -webkit-backdrop-filter: none; }
.header-cta .btn-hero:hover { background-color: #7b7fef; border-color: #7b7fef; }
.btn-xl { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }
.btn-w-full { width: 100%; }

/* FOOTER */
.site-footer { background-color: var(--brand-almost-black); color: white; }
.footer-inner { padding: 4rem 0 2rem; }
@media (min-width: 768px) { .footer-inner { padding: 5rem 0 2rem; } }
.footer-accent-line { width: 60px; height: 2px; background-color: var(--primary); margin-bottom: 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .footer-logo img { height: 40px; } }
.footer-desc { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 280px; }
.footer-social { margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.footer-social a { color: #666; transition: color 0.2s; line-height: 0; }
.footer-social a:hover { color: var(--primary); }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 2rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: #666; }

/* ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* SECTION UTILITIES */
.section-py { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .section-py { padding-top: 7rem; padding-bottom: 7rem; } }
.overline { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.75rem; }
.overline-primary { color: var(--primary); }
.overline-accent { color: var(--accent); }
.overline-green { color: var(--green); }
.overline-lilac { color: var(--brand-lilac); }
.section-title { font-size: 1.75rem; font-weight: 800; line-height: 1.14; text-wrap: balance; }
@media (min-width: 768px) { .section-title { font-size: 2.125rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.625rem; } }
.section-title.dark { color: white; }
.section-title.light { color: var(--brand-dark-1); }
.section-desc { margin-top: 1rem; font-size: 1rem; line-height: 1.75; }
@media (min-width: 768px) { .section-desc { font-size: 1.125rem; } }
.section-desc.dark { color: rgba(255,255,255,0.7); }
.section-desc.light { color: rgba(35,31,32,0.7); }
.section-heading { max-width: 42rem; }
.section-heading.center { text-align: center; margin: 0 auto; }
.section-heading.wide-heading { max-width: 56rem; }
.compact-title { font-size: 1.625rem; line-height: 1.18; }
@media (min-width: 768px) { .compact-title { font-size: 2rem; } }
@media (min-width: 1024px) { .compact-title { font-size: 2.375rem; } }

/* PAGE HERO */
.page-hero { padding: 8rem 0 4rem; background-color: var(--brand-dark-1) !important; border-bottom: 1px solid rgba(241,242,242,0.1); }
@media (min-width: 768px) { .page-hero { padding: 9rem 0 4.75rem; } }
.page-hero .animate-on-scroll { max-width: 58rem !important; }
.page-title { font-size: 2rem; font-weight: 800; line-height: 1.14; color: white; text-wrap: balance; max-width: 52rem; }
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .page-title { font-size: 2.875rem; } }
.page-desc { margin-top: 1.25rem; font-size: 1rem; line-height: 1.75; color: rgba(241,242,242,0.72); max-width: 40rem; }
@media (min-width: 768px) { .page-desc { font-size: 1.125rem; } }

/* EDITORIAL INNER PAGES */
.editorial-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; }
@media (min-width: 1024px) { .editorial-split { grid-template-columns: minmax(0,0.95fr) minmax(320px,0.55fr); gap: 5rem; } }
.editorial-note { font-size: 1rem; line-height: 1.75; color: rgba(35,31,32,0.66); }
.editorial-note.dark { color: rgba(255,255,255,0.72); }
.line-card-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid #E8E9E9; margin-top: 3rem; }
@media (min-width: 768px) { .line-card-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .line-card-grid.three { grid-template-columns: repeat(3,1fr); } .line-card-grid.four { grid-template-columns: repeat(4,1fr); } }
.line-card { padding: 1.75rem 1.25rem 1.75rem 0; border-bottom: 1px solid #E8E9E9; }
.line-card .line-number { display: block; margin-bottom: 1.25rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; color: var(--brand-lilac); }
.line-card h3 { font-size: 1.125rem; font-weight: 800; line-height: 1.3; color: var(--brand-dark-1); }
.line-card p { margin-top: 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: rgba(35,31,32,0.66); }
.soft-panel { border: 1px solid #E8E9E9; border-radius: 8px; background: white; padding: 1.75rem; }
.dark-editorial { background: var(--brand-dark-1) !important; }
.muted-editorial { background: var(--brand-gray) !important; }
.center-copy { max-width: 42rem; margin: 0 auto; text-align: center; }
.center-copy p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.7); }
.center-copy .center-copy-lead { font-size: 1.125rem; color: rgba(255,255,255,0.85); }
.center-copy-divider { width: 64px; height: 1px; background-color: var(--primary); margin: 2rem auto; }

/* GRIDS */
.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: repeat(2,1fr); gap: 2rem; }
.grid-5c { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 640px) { .sm-grid-2 { grid-template-columns: repeat(2,1fr) !important; } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-5c { grid-template-columns: repeat(5,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }
.two-col-5 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col-5 { grid-template-columns: 3fr 2fr; } }
.two-col-equal { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col-equal { grid-template-columns: repeat(2,1fr); } }
.two-col-insights { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col-insights { grid-template-columns: 1fr 2fr; } }
.col-5-form { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .col-5-form { grid-template-columns: 3fr 2fr; } }

/* HERO */
.hero-section { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background-color: var(--brand-dark-1); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 1px 1px, #67E6BA 1px, transparent 0); background-size: 32px 32px; pointer-events: none; }
.hero-content { padding-top: 7rem; padding-bottom: 7rem; }
@media (min-width: 768px) { .hero-content { padding-top: 9rem; padding-bottom: 9rem; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 3fr 2fr; } }
.hero-overline { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 1rem; }
.hero-title { font-size: 2rem; font-weight: 800; line-height: 1.12; color: white; text-wrap: balance; }
@media (min-width: 768px) { .hero-title { font-size: 2.625rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.25rem; } }
.hero-desc { margin-top: 1.5rem; font-size: 1rem; line-height: 1.75; color: rgba(241,242,242,0.85); max-width: 42rem; }
@media (min-width: 768px) { .hero-desc { font-size: 1rem; } }
.hero-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 13px; color: var(--accent); }
.hero-visual { display: none; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .hero-visual { display: flex; } }
.hero-orb { position: relative; width: 320px; height: 320px; }
.hero-orb-blur { position: absolute; inset: 0; border-radius: 50%; background-color: rgba(0,77,67,0.6); filter: blur(3rem); }
.hero-orb-ring-1 { position: absolute; inset: 0; border-radius: 50%; border: 6px solid transparent; background: linear-gradient(135deg, #67E6BA, #8F93FF) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spinOrb 30s linear infinite; }
.hero-orb-ring-2 { position: absolute; inset: 24px; border-radius: 50%; border: 3px solid transparent; background: linear-gradient(225deg, #8F93FF, #67E6BA) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spinOrb 20s linear infinite reverse; }
@keyframes spinOrb { to { transform: rotate(360deg); } }

/* HOME TEST LAYOUT */
.home-hero { min-height: auto; }
.home-hero .container { padding-left: 0.5rem; padding-right: 0.5rem; }
.home-hero .hero-content { padding-top: 24rem; padding-bottom: 1.5rem; }
@media (min-width: 768px) { .home-hero .hero-content { padding-top: 26rem; padding-bottom: 8rem; } }
.home-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: end; }
@media (min-width: 1024px) { .home-hero-grid { grid-template-columns: minmax(0,1.12fr) minmax(320px,0.56fr); gap: 5rem; } }
.hero-3col { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; align-items: end; }
@media (max-width: 767px) { .hero-3col { grid-template-columns: 1fr; } }
.home-hero .hero-overline { color: rgba(143,147,255,0.88); margin-bottom: 1.25rem; }
.home-hero .hero-title { max-width: 760px; font-size: 2.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
@media (min-width: 768px) { .home-hero .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .home-hero .hero-title { font-size: 4rem; } }
.home-hero .hero-desc { max-width: 620px; color: rgba(241,242,242,0.74); }
.home-hero .btn-hero { background-color: var(--green); color: var(--brand-dark-1); border-color: var(--green); }
.home-hero .btn-hero:hover { background-color: #bbef5a; border-color: #bbef5a; }
.home-hero .btn-hero-outline { background-color: transparent; color: var(--green); border-color: var(--green); }
.home-hero .btn-hero-outline:hover { background-color: rgba(208,255,113,0.12); border-color: var(--green); color: var(--green); }
.home-hero-panel { border: 1px solid rgba(241,242,242,0.14); border-radius: 8px; padding: 1.5rem; background: rgba(255,255,255,0.04); box-shadow: 0 24px 70px rgba(0,0,0,0.18); }
.home-panel-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(241,242,242,0.12); }
.home-panel-header span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,242,242,0.52); }
.home-panel-header img { height: 32px; width: auto; }
.home-panel-copy p { margin-top: 1.5rem; font-size: 1.25rem; line-height: 1.45; color: white; }
.home-panel-copy strong { font-weight: 800; color: var(--primary); }
.home-panel-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.home-panel-list span { padding-top: 0.75rem; border-top: 1px solid rgba(241,242,242,0.12); font-size: 0.875rem; color: rgba(241,242,242,0.74); }
.vision-editorial { width: 100%; display: flex; gap: 4rem; align-items: flex-start; }
.vision-editorial-content { flex: 1; min-width: 0; }
.vision-editorial-image { flex-shrink: 0; width: 42%; border-radius: 0.625rem; overflow: hidden; background: #D4D5D9; min-height: 620px; }
.vision-editorial-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; }
.vision-editorial-copy { margin-top: 2rem; }
.vision-editorial-copy p { font-size: 1.0625rem; font-weight: 600; line-height: 1.8; color: var(--brand-dark-1); }
.vision-editorial-copy p + p { margin-top: 1.25rem; }
@media (max-width: 767px) {
  .vision-editorial { flex-direction: column; gap: 2rem; }
  .vision-editorial-image { width: 100%; }
}
.home-proof-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(241,242,242,0.12); }
@media (min-width: 768px) { .home-proof-row { grid-template-columns: repeat(4,1fr); } }
.home-proof-row div { display: flex; flex-direction: column; gap: 0.25rem; }
.home-proof-row strong { font-size: 1rem; color: white; line-height: 1.2; }
.home-proof-row span { font-size: 0.8125rem; color: rgba(241,242,242,0.58); }
.home-logo-section { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(241,242,242,0.12); }
.home-logo-contrast { background: rgba(10, 26, 28, 0.55); border-radius: 0.625rem; padding: 1.25rem 1.5rem 1rem; border-top: none; margin-top: 6rem; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.home-logo-on-light { background: rgba(25,49,51,0.9); border-radius: 0.625rem; padding: 1.25rem 1.5rem 1rem; border-top: none; }
.home-logo-on-light .client-logo img { filter: none; opacity: 1; }
.logo-carousel-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(241,242,242,0.55); margin-bottom: 1rem; }
.home-logo-carousel { position: relative; min-height: 4.75rem; overflow: hidden; display: flex; align-items: center; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.home-logo-track { display: flex; width: max-content; animation: logoMarquee 42s linear infinite; }
.home-logo-set { display: flex; align-items: center; gap: 3rem; padding-right: 3rem; flex-shrink: 0; }
.client-logo { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-width: 150px; height: 3rem; color: rgba(241,242,242,0.9); white-space: nowrap; opacity: 1; }
.client-logo img { display: block; width: auto; max-width: 190px; max-height: 2.5rem; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.client-logo-lg img { max-height: 4rem !important; max-width: 220px !important; }
.client-logo-text { font-size: 1.375rem; font-weight: 800; line-height: 1; }
.nederman-word { color: #24A0DB; font-style: italic; font-size: 2rem; letter-spacing: 0; }
.hunter-word { color: rgba(200, 210, 215, 0.9); font-size: 1.55rem; gap: 1rem; }
.hunter-word span { width: 2rem; height: 2rem; border-radius: 50%; background: linear-gradient(135deg, #F29300 0 48%, transparent 48% 52%, #F29300 52%); }
.saertex-word { color: #F1F2F2; font-size: 1.45rem; font-style: italic; }
.niedax-word { gap: 0.5rem; color: #1BA7DC; font-size: 1.7rem; font-weight: 500; }
.niedax-word small { color: #7A868C; font-size: 0.95rem; font-weight: 700; }
.greenergy-word { color: #06577A; font-size: 1.75rem; }
.optibelt-word span { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1.5rem; color: white; font-size: 1.05rem; background: #0E4B78; transform: skewX(-10deg); }
.biesterfeld-word { gap: 0.75rem; color: #7D8185; font-size: 1.55rem; font-style: italic; }
.biesterfeld-word strong { color: #5D6268; font-size: 2.8rem; font-style: normal; line-height: 0.8; }
.solventum-word { gap: 0.7rem; color: #F1F2F2; font-size: 1.75rem; font-weight: 400; }
.solventum-word span { color: #00DF38; font-size: 2.75rem; font-weight: 800; line-height: 0.85; }
@keyframes logoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .home-logo-track { animation: none; } }
.home-pillars-section { background: url('assets/como-trabalhamos-foto.jpg') center/cover no-repeat; }
.home-split-heading { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: end; }
@media (min-width: 1024px) { .home-split-heading { grid-template-columns: minmax(0,0.95fr) minmax(320px,0.55fr); gap: 5rem; } }
.home-split-heading .section-title { max-width: 680px; }
.home-pillar-grid { display: grid; grid-template-columns: 1fr; margin-top: 3.5rem; border-top: 1px solid #E8E9E9; }
@media (min-width: 768px) { .home-pillar-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .home-pillar-grid { grid-template-columns: repeat(4,1fr); } }
.home-pillar-card { padding: 1.75rem 1.25rem 1.75rem 0; border-bottom: 1px solid #E8E9E9; }
@media (min-width: 768px) { .home-pillar-card { padding-right: 1.5rem; } }
.home-pillar-card span { display: block; margin-bottom: 1.5rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; color: var(--brand-dark-2); }
.home-pillar-card h3 { font-size: 1.125rem; font-weight: 800; color: var(--brand-dark-1); }
.home-pillar-card p { margin-top: 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: rgba(35,31,32,0.66); }

/* METHOD PILLAR CARDS — Como trabalhamos */
.pillar-method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
@media (max-width: 767px) { .pillar-method-grid { grid-template-columns: 1fr; } }

.pillar-method-card { position: relative; background: rgba(10,26,28,0.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: none; border-radius: 1rem; padding: 2.75rem 2.5rem; min-height: 300px; display: flex; flex-direction: column; gap: 1.5rem; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: inset 10px 10px 28px rgba(255,255,255,0.04), inset -10px -10px 28px rgba(255,255,255,0.04); }
.pillar-method-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 0.5px; background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 33%, rgba(255,255,255,0.55) 66%, transparent 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.pillar-method-card:hover { transform: translateY(-5px); box-shadow: inset 10px 10px 28px rgba(255,255,255,0.06), inset -10px -10px 28px rgba(255,255,255,0.06), 0 20px 56px rgba(0,0,0,0.32); }

.pillar-method-num { position: absolute; top: 1rem; right: 1.75rem; font-size: 8rem; font-weight: 900; line-height: 1; color: rgba(241,242,242,0.045); pointer-events: none; user-select: none; letter-spacing: -0.04em; }

.pillar-method-icon { line-height: 0; }

.pillar-method-title { font-size: 1.6rem; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.01em; margin-top: auto; }

.pillar-method-rule { width: 2.75rem; height: 2.5px; border-radius: 2px; background: var(--primary); }

.pillar-method-desc { font-size: 0.9375rem; line-height: 1.75; color: rgba(241,242,242,0.66); }
.home-services-section { background: var(--brand-gray); }
.home-services-section .service-card { border-top: 0; border-left: 1px solid #E8E9E9; box-shadow: none; border-radius: 8px; }
.home-services-section .service-card svg { width: 36px; height: 36px; }
.home-services-section .exclusive-box { border-radius: 8px; background: white; border: 1px solid #E8E9E9; }
.home-strategic-services { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 900px) { .home-strategic-services { grid-template-columns: repeat(3, 1fr); } }
.home-strategic-card { min-height: 320px; display: flex; flex-direction: column; padding: 1.75rem; border-radius: 0.5rem; background: white; border: 1px solid #E8E9E9; border-left: 4px solid var(--primary); color: var(--brand-dark-1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.home-strategic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.home-strategic-number { font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.18em; color: var(--primary); }
.home-strategic-card h3 { margin-top: 2.5rem; font-size: 1.5rem; line-height: 1.18; color: var(--brand-dark-1); }
.home-strategic-card p { margin-top: 1rem; font-size: 0.9375rem; line-height: 1.65; color: rgba(35,31,32,0.74); }
.home-strategic-tags { margin-top: auto; padding-top: 1.5rem; font-size: 0.75rem; line-height: 1.6; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(35,31,32,0.48); }
.home-erp-feature { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: end; padding: 2rem; border-radius: 0.5rem; background: var(--brand-dark-1); color: white; }
@media (min-width: 900px) { .home-erp-feature { grid-template-columns: minmax(0,0.9fr) minmax(320px,1fr); padding: 2.25rem 2.5rem; } }
.home-erp-label { display: block; margin-bottom: 0.75rem; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--green); }
.home-erp-feature h3 { max-width: 34rem; font-size: 1.5rem; line-height: 1.2; color: white; }
.home-erp-feature p { font-size: 1rem; line-height: 1.75; color: rgba(241,242,242,0.74); }
.home-audience-section { overflow: hidden; }
.home-audience-section .overline { color: var(--primary); }
.home-audience-section .section-title.light { color: white; }
.home-audience-section .section-desc.light { color: rgba(255,255,255,0.74); }

/* STATS BAR */
.stats-bar { background-color: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; padding: 2.5rem 0; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); padding: 3rem 0; } }
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.875rem; font-weight: 900; color: var(--brand-dark-1); line-height: 1.2; }
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--brand-dark-2); }

/* SERVICE CARDS */
.service-card { background: white; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-card); border-top: 3px solid; transition: transform 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark-1); margin-top: 1rem; }
.service-card .tags { font-size: 0.75rem; color: rgba(35,31,32,0.5); line-height: 1.6; margin-top: 0.5rem; }
.service-card .desc { font-size: 0.875rem; line-height: 1.6; color: rgba(35,31,32,0.8); margin-top: 0.75rem; flex: 1; }
.service-card .more-link { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-dark-2); transition: gap 0.2s; }
.service-card .more-link:hover { gap: 0.625rem; }
.service-tags { font-size: 0.75rem !important; line-height: 1.6 !important; color: rgba(35,31,32,0.48) !important; text-transform: uppercase; letter-spacing: 0.08em; }
.line-card .more-link { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-dark-2); transition: gap 0.2s; }
.line-card .more-link:hover { gap: 0.625rem; }

/* EXCLUSIVE BOX */
.exclusive-box { background-color: var(--brand-lilac-light); border-radius: var(--radius); padding: 2rem; margin-top: 2rem; }
@media (min-width: 768px) { .exclusive-box { padding: 2.5rem; } }
.exclusive-box .ex-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brand-lilac); margin-bottom: 0.75rem; display: block; }
.exclusive-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark-1); }
@media (min-width: 768px) { .exclusive-box h3 { font-size: 1.5rem; } }
.exclusive-box p { font-size: 0.875rem; line-height: 1.6; color: rgba(35,31,32,0.8); margin-top: 0.75rem; max-width: 48rem; }

/* DOT PATTERN */
.dot-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, #67E6BA 1px, transparent 0); background-size: 32px 32px; opacity: 0.04; pointer-events: none; }

/* CTA BANNER */
.cta-banner { position: relative; overflow: hidden; background: var(--brand-dark-1); border-top: 1px solid rgba(241,242,242,0.1); }
.blog-cta-bg { background: #004D43; }
.blog-cta-bg .blog-preview-section { background: transparent; }
.blog-cta-bg .cta-banner { background: var(--brand-dark-1); }
.cta-final .btn-hero { background-color: var(--green); color: var(--brand-dark-1); border-color: var(--green); }
.cta-final .btn-hero:hover { background-color: #bbef5a; border-color: #bbef5a; }
.cta-banner-decor { display: none; }
.cta-banner-decor-ring { width: 100%; height: 100%; border-radius: 50%; border: 40px solid var(--primary); }
.cta-content { text-align: center; max-width: 42rem; margin: 0 auto; }
.cta-title { font-size: 1.5rem; font-weight: 800; line-height: 1.25; color: white; text-wrap: balance; }
@media (min-width: 768px) { .cta-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 2.25rem; } }
.cta-desc { margin-top: 1rem; font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.7); }
@media (min-width: 768px) { .cta-desc { font-size: 1.125rem; } }
.cta-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.cta-contact-info { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; font-size: 0.75rem; color: var(--accent); }
@media (min-width: 640px) { .cta-contact-info { flex-direction: row; } }
.cta-contact-info span { display: flex; align-items: center; gap: 0.375rem; }

/* CHECK LIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.check-text { font-size: 0.875rem; color: white; line-height: 1.6; }
.check-text-dark { font-size: 0.875rem; color: var(--brand-almost-black); line-height: 1.6; }

/* DARK BOX */
.dark-box { background-color: rgba(25,49,51,0.76); border: 1px solid rgba(241,242,242,0.12); border-radius: 0.5rem; padding: 2rem; }
.dark-box .db-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); display: block; margin-bottom: 1rem; }
.dark-box .db-divider { width: 100%; height: 1px; background-color: rgba(143,147,255,0.3); margin-bottom: 1rem; }
.dark-box p { font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* VALUE CARDS */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
.value-card { background-color: var(--brand-dark-1); border-radius: 0.5rem; padding: 1.75rem; border: none; box-shadow: 0 6px 20px rgba(25,49,51,0.18); transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease; }
.values-grid:hover .value-card { transform: scale(0.96); opacity: 0.75; }
.values-grid:hover .value-card:hover { transform: scale(1.03); opacity: 1; background-color: var(--brand-dark-1); box-shadow: 0 12px 32px rgba(25,49,51,0.28); }
.values-grid:hover .value-card:hover h4 { color: var(--green); }
.values-grid:hover .value-card:hover p { color: rgba(255,255,255,0.78); }
.value-card h4 { font-size: 1.625rem; font-weight: 700; color: var(--green); transition: color 0.3s ease; }
.value-card p { margin-top: 0.625rem; font-size: 0.9375rem; line-height: 1.65; color: rgba(255,255,255,0.78); transition: color 0.3s ease; }

/* DARK VALUE CARDS */
.dark-values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 3.5rem 0 0; }
@media (min-width: 640px) { .dark-values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .dark-values-grid { grid-template-columns: repeat(4,1fr); } }
.dark-value-card { height: 100%; background-color: rgba(25,49,51,0.72); border: 1px solid rgba(241,242,242,0.12); border-radius: 0.5rem; padding: 1rem; overflow: hidden; }
.dark-value-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 0.375rem; margin-bottom: 1.25rem; }
.dark-value-card h3 { font-size: 1.125rem; font-weight: 700; color: white; }
.dark-value-card .dvc-sub { font-size: 0.875rem; color: var(--primary); margin-top: 0.25rem; }
.dark-value-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* PILLAR ITEMS */
.pillar-item { height: 100%; text-align: left; padding: 1.5rem 0; border-top: 1px solid #E8E9E9; }
.pillar-item.pillar-card { background: white; border-radius: 1rem; padding: 2.25rem; border-top: none; border: none; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pillar-item.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.pillar-bar { width: 40px; height: 3px; margin: 0 0 1.5rem; border-radius: 9999px; }
.pillar-icon { margin: 0 0 1.25rem; }
.pillar-icon-img { width: 80px; height: 80px; object-fit: contain; filter: brightness(0) saturate(100%) invert(62%) sepia(40%) saturate(700%) hue-rotate(210deg) brightness(110%); }
.pillar-item h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark-1); }
.pillar-item p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(35,31,32,0.7); }

/* CONTRAST ITEMS */
.contrast-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; border-radius: 0; background-color: transparent; border-top: 1px solid #E8E9E9; }
.contrast-item .old-text { font-size: 0.875rem; font-weight: 500; color: rgba(35,31,32,0.4); text-decoration: line-through; }
.contrast-item .arrow { color: var(--primary); font-size: 1.25rem; }
.contrast-item .new-text { font-size: 0.875rem; font-weight: 700; color: var(--brand-dark-2); }

/* WHY MOSAIC */
.why-section { background: var(--brand-dark-2); }
.why-heading { max-width: 720px; margin-bottom: 2.5rem; }
.why-heading .overline { color: var(--green); }
.why-heading h2 { margin-top: 1rem; font-size: 1.75rem; font-weight: 800; line-height: 1.14; color: white; text-wrap: balance; }
.why-heading p { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: rgba(241,242,242,0.74); }
@media (min-width: 768px) { .why-heading h2 { font-size: 2.125rem; } .why-heading p { font-size: 1.125rem; } }
@media (min-width: 1024px) { .why-heading h2 { font-size: 2.625rem; } }
.why-mosaic { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
@media (min-width: 768px) { .why-mosaic { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.why-tile { min-height: 260px; border-radius: 0.375rem; overflow: hidden; background: var(--brand-dark-1); }
.why-copy { padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; color: white; border: 1px solid rgba(208,255,113,0.12); }
.why-copy h3 { max-width: 32rem; font-size: 2.125rem; font-weight: 600; line-height: 1.12; color: white; }
.why-copy p { margin-top: 2rem; font-size: 0.9375rem; line-height: 1.75; color: rgba(241,242,242,0.78); }
.why-image { height: 260px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .why-tile { min-height: 300px; }
  .why-image { height: 300px; }
  .why-copy { padding: 2.5rem; }
}
@media (max-width: 767px) {
  .why-mosaic > :nth-child(1) { order: 1; }
  .why-mosaic > :nth-child(2) { order: 2; }
  .why-mosaic > :nth-child(3) { order: 4; }
  .why-mosaic > :nth-child(4) { order: 3; }
  .why-mosaic > :nth-child(5) { order: 5; }
  .why-mosaic > :nth-child(6) { order: 6; }
}

/* DARK PRACTICE */
.dark-practice-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.25rem 0; border-radius: 0; background-color: transparent; border-top: 1px solid rgba(241,242,242,0.14); }
.dark-practice-item p { font-size: 0.875rem; color: white; line-height: 1.6; }

/* EFFECT WORDS */
.effect-word { text-align: center; padding: 1.5rem 0; border-radius: 0; background-color: transparent; border-top: 1px solid #E8E9E9; border-bottom: 1px solid #E8E9E9; }
.effect-word span { font-size: 1.125rem; font-weight: 700; color: var(--brand-dark-2); }

/* INSIGHT CARDS */
.insight-card { background: white; border-radius: 0.5rem; padding: 1.5rem; border: 1px solid #E8E9E9; box-shadow: none; display: flex; flex-direction: column; height: 100%; transition: border-color 0.3s; }
.insight-card:hover { border-color: rgba(143,147,255,0.3); }
.insight-badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; border-radius: 9999px; background-color: rgba(143,147,255,0.15); color: var(--brand-lilac); margin-bottom: 0.75rem; }
.insight-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-almost-black); line-height: 1.375; flex: 1; }
.insight-card p { font-size: 0.875rem; color: rgba(35,31,32,0.6); line-height: 1.6; margin-top: 0.5rem; }
.insight-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--brand-gray); }
.read-time { font-size: 0.75rem; color: var(--accent); }
.read-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-dark-2); }

/* BLOG POST PREVIEW */
.blog-post-white { padding: 2rem; border-radius: 0.5rem; background: white; box-shadow: none; border: 1px solid #E8E9E9; transition: border-left 0.3s; min-height: 180px; display: flex; flex-direction: column; justify-content: center; }
.blog-post-dark { padding: 2rem; border-radius: 0.5rem; background: var(--brand-dark-2); border: 1px solid rgba(241,242,242,0.12); transition: border-left 0.3s; min-height: 180px; display: flex; flex-direction: column; justify-content: center; }
.blog-post-white:hover, .blog-post-dark:hover { border-left: 4px solid var(--primary); }

/* BLOG INFO CARD (coluna esquerda) */
.blog-info-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 1rem; padding: 2.25rem; display: flex; flex-direction: column; height: 100%; }
.blog-section-header { max-width: 720px; }

/* BLOG CAROUSEL */
.blog-carousel-wrapper { position: relative; }
.blog-carousel-btn { display: none; }

@media (max-width: 767px) {
  .blog-carousel-wrapper { display: flex; align-items: center; gap: 0.5rem; }
  .blog-carousel-track { display: flex !important; grid-template-columns: unset !important; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; gap: 0.75rem; scrollbar-width: none; flex: 1; }
  .blog-carousel-track::-webkit-scrollbar { display: none; }
  .blog-carousel-track .blog-card { flex: 0 0 82%; scroll-snap-align: center; height: 280px; }
  .blog-carousel-btn { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); color: white; cursor: pointer; transition: background 0.2s; }
  .blog-carousel-btn:hover { background: rgba(255,255,255,0.25); }
}

/* BLOG PHOTO CARDS */
.blog-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 1023px) { .blog-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .blog-card-grid { grid-template-columns: 1fr; } }

.blog-card { display: flex; flex-direction: column; border-radius: 0.875rem; overflow: hidden; background: white; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 320px; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }

.blog-card-img { position: relative; width: 100%; flex: 1; min-height: 0; aspect-ratio: unset; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-badge { position: absolute; bottom: 0.75rem; left: 0.75rem; background: var(--green); color: var(--brand-dark-1); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.3rem 0.75rem; border-radius: 9999px; }

.blog-card-body { padding: 1rem 1.125rem; display: flex; flex-direction: column; gap: 0.375rem; flex: none; min-height: 118px; justify-content: space-between; }
.blog-card-title { font-size: 1.0625rem; font-weight: 800; color: var(--brand-dark-1); line-height: 1.28; }
.blog-card-arrow { margin-top: auto; color: var(--brand-dark-1); opacity: 0.4; transition: opacity 0.2s, transform 0.2s; }
.blog-card:hover .blog-card-arrow { opacity: 1; transform: translate(2px, -2px); }
.blog-badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; border-radius: 9999px; background-color: rgba(143,147,255,0.15); color: var(--brand-lilac); margin-bottom: 0.75rem; }
.blog-post-white h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-almost-black); line-height: 1.375; }
.blog-post-dark h3 { font-size: 1.125rem; font-weight: 700; color: white; line-height: 1.375; }
.blog-time { font-size: 13px; color: var(--accent); margin-top: 0.5rem; }

/* FILTER BAR */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid #E8E9E9; }
.filter-btn { padding: 0.5rem 0.875rem; font-size: 0.8125rem; font-weight: 700; border-radius: 0.5rem; border: 1px solid #E8E9E9; cursor: pointer; transition: all 0.2s; background-color: white; color: rgba(35,31,32,0.62); }
.filter-btn.active, .filter-btn:hover { background-color: var(--brand-dark-1); border-color: var(--brand-dark-1); color: white; }

/* CONTACT INFO */
.contact-layout { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-intro { max-width: 52rem; }
.contact-intro h2 { font-size: 1.75rem; font-weight: 800; line-height: 1.14; color: var(--brand-dark-1); text-wrap: balance; }
@media (min-width: 768px) { .contact-intro h2 { font-size: 2.25rem; } }
.contact-intro p { margin-top: 1rem; font-size: 1.125rem; line-height: 1.75; color: rgba(35,31,32,0.72); }
.contact-form-info-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 1024px) { .contact-form-info-grid { grid-template-columns: minmax(0,1.35fr) minmax(320px,0.9fr); gap: 2rem; } }
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .contact-info-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .contact-form-info-grid .contact-info-grid { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .contact-form-info-grid .contact-info-item { min-height: 0; padding: 1rem; } }
@media (min-width: 1024px) { .contact-form-info-grid .contact-info-icon { width: 2rem; height: 2rem; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; min-height: 8.5rem; padding: 1.5rem; border: 1px solid #E8E9E9; border-radius: 0.5rem; background: white; box-shadow: none; }
.contact-info-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background-color: var(--brand-gray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand-dark-2); }
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(35,31,32,0.4); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 1rem; line-height: 1.55; color: var(--brand-almost-black); white-space: pre-line; }
.map-placeholder { background-color: var(--brand-gray); border: 1px solid #E8E9E9; border-radius: 0.5rem; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.map-placeholder p { font-size: 0.875rem; color: rgba(35,31,32,0.4); }
.map-embed { border-radius: 0.5rem; overflow: hidden; width: 100%; }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* CONTACT FORM */
.contact-form-section { background: var(--brand-gray); border-radius: 0.75rem; padding: 2rem; }
@media (min-width: 768px) { .contact-form-section { padding: 2.5rem; } }
.contact-form-title { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark-1); margin-bottom: 0.5rem; }
.contact-form-desc { font-size: 0.9375rem; color: rgba(35,31,32,0.65); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2,1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.8125rem; font-weight: 700; color: var(--brand-almost-black); }
.form-input, .form-textarea { width: 100%; padding: 0.75rem 1rem; font-size: 0.9375rem; font-family: 'DM Sans', sans-serif; border: 1.5px solid #D8D9D9; border-radius: 0.5rem; background: white; color: var(--brand-almost-black); transition: border-color 0.2s; outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--brand-lilac); box-shadow: 0 0 0 3px rgba(143,147,255,0.15); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(35,31,32,0.35); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { align-self: flex-start; }
.form-note { font-size: 0.8125rem; color: rgba(35,31,32,0.45); margin-top: 0.5rem; }

/* COMPANY LOGOS */
.logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
.logo-name { padding: 0.5rem 1rem; font-size: 1rem; font-weight: 500; color: rgba(35,31,32,0.4); transition: color 0.2s; }
.logo-name:hover { color: var(--brand-almost-black); }

/* TESTIMONIAL */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card { position: relative; background: var(--brand-gray); border-radius: 0.5rem; padding: 1.75rem; min-height: 100%; }
.testimonial-quote { position: absolute; top: 0.75rem; left: 1.25rem; font-size: 4rem; line-height: 1; color: rgba(143,147,255,0.34); font-weight: 900; user-select: none; }
.testimonial-text { position: relative; font-size: 1rem; line-height: 1.7; color: var(--brand-almost-black); padding-top: 2rem; }
.testimonial-author { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(35,31,32,0.1); }
.testimonial-author .author-name { font-size: 0.875rem; font-weight: 700; color: var(--brand-almost-black); }
.testimonial-author .author-role { font-size: 0.75rem; color: rgba(35,31,32,0.6); }
.testimonial-author .testimonial-stars { color: #F5B301; font-size: 0.875rem; letter-spacing: 0.08em; }

/* TESTIMONIAL CARDS — novo layout horizontal */
.tcard-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.tcard { display: grid; grid-template-columns: 180px 1fr; gap: 0; background: var(--brand-gray); border-radius: 1rem; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tcard:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
@media (max-width: 639px) { .tcard { grid-template-columns: 1fr; } }

.tcard-photo { width: 180px; flex-shrink: 0; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard-avatar { width: 100%; height: 100%; min-height: 180px; background: var(--brand-dark-1); align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 800; color: rgba(241,242,242,0.6); letter-spacing: 0.05em; }
@media (max-width: 639px) { .tcard-photo { width: 100%; height: 200px; } }

.tcard-content { padding: 2rem 2.25rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }

.tcard-name { font-size: 1.125rem; font-weight: 800; color: var(--brand-dark-1); line-height: 1.2; }
.tcard-company { font-size: 0.8125rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; }
.tcard-text { margin-top: 0.75rem; font-size: 0.9375rem; line-height: 1.75; color: rgba(35,31,32,0.72); font-style: italic; }

/* ABOUT PAGE */
.title-with-bar { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.vertical-bar { width: 4px; height: 80px; background-color: var(--primary); border-radius: 9999px; flex-shrink: 0; }
.iso-card { display: flex; flex-direction: column; gap: 0; max-width: 52rem; margin: 0 auto; border: 1.5px solid rgba(143,147,255,0.25); border-radius: 1.25rem; overflow: hidden; box-shadow: 0 4px 32px rgba(143,147,255,0.10); }
@media (min-width: 768px) { .iso-card { flex-direction: row; } }
.iso-card-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; background: linear-gradient(135deg, var(--primary) 0%, #6c70e0 100%); color: white; padding: 2.5rem 2rem; min-width: 10rem; overflow: hidden; }
.iso-card-logo-wrap { width: 13rem; height: 13rem; display: flex; align-items: center; justify-content: center; }
.iso-card-logo { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.iso-card-badge-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.iso-card-body { padding: 2rem 2.25rem; background: white; flex: 1; }
.iso-card-standard { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.35rem; }
.iso-card-title { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark-1); margin-bottom: 0.85rem; }
.iso-card-desc { font-size: 0.9375rem; line-height: 1.7; color: rgba(35,31,32,0.72); margin-bottom: 1.25rem; }
.iso-card-pillars { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.iso-card-pillars li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: rgba(35,31,32,0.8); font-weight: 500; }
.iso-card-pillars li svg { color: var(--primary); flex-shrink: 0; }

/* DIFERENCIAL EXCLUSIVO - SERVIÇOS PAGE */
.diferencial-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
@media (min-width: 1024px) { .diferencial-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.diferencial-grid .soft-panel { max-height: 320px; overflow: auto; }
.diferencial-photo { width: 100%; height: 100%; max-height: 320px; object-fit: cover; object-position: center 40%; display: block; border-radius: 0.75rem; }
.erp-showcase { display: grid; grid-template-columns: 1fr; overflow: hidden; border-radius: 0.5rem; background: var(--brand-dark-1); }
@media (min-width: 900px) { .erp-showcase { grid-template-columns: 0.86fr 1fr; min-height: 420px; } }
.erp-showcase-copy { display: flex; flex-direction: column; justify-content: center; padding: 2rem; background: var(--brand-dark-1); color: white; }
@media (min-width: 900px) { .erp-showcase-copy { padding: 3.25rem 2.75rem; } }
.erp-showcase-copy .overline { color: var(--green); }
.erp-showcase-copy h2 { margin-top: 1rem; font-size: 2rem; font-weight: 700; line-height: 1.12; color: white; text-wrap: balance; }
.erp-showcase-copy p { margin-top: 1.25rem; max-width: 32rem; font-size: 1rem; line-height: 1.75; color: rgba(241,242,242,0.78); }
.erp-logo-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 2rem; align-items: center; padding: 2rem; background: #F1F2F2; }
@media (min-width: 640px) { .erp-logo-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 3rem; } }
@media (min-width: 1024px) { .erp-logo-panel { padding: 3.5rem 4rem; } }
.erp-logo { display: flex; align-items: center; justify-content: flex-start; min-height: 4.5rem; }
.erp-logo img { display: block; width: auto; height: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.erp-ti9 img { max-height: 7rem; }
.erp-sankhya img { max-height: 9rem; mix-blend-mode: multiply; }
.erp-dynamics img { max-height: 6rem; }
.erp-sap img { max-height: 6.5rem; }
.erp-totvs { grid-column: 1 / -1; }
.erp-totvs img { max-height: 6.5rem; max-width: 70%; mix-blend-mode: multiply; }

/* CANAIS DIRETOS - CONTATO PAGE */
.canais-diretos-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .canais-diretos-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.canais-diretos-photo { width: 100%; height: 480px; border-radius: 0.75rem; object-fit: cover; display: block; }

/* QUEM NOS PROCURA - PARA QUEM PAGE */
.quem-procura-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .quem-procura-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.quem-procura-lead { font-size: 1.125rem; font-weight: 500; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-top: 1rem; }
@media (min-width: 768px) { .quem-procura-lead { font-size: 1.25rem; } }
.quem-procura-divider { width: 64px; height: 1px; background-color: var(--primary); margin: 1.5rem 0; }
.quem-procura-body { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.7); }
.quem-procura-photo { width: 100%; border-radius: 0.75rem; object-fit: cover; display: block; }

/* HOME IMAGE ADDITIONS */
.hero-photo-wrap { border-radius: 0.75rem; overflow: hidden; width: 100%; min-height: 280px; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
@media (min-width: 1024px) { .hero-photo-wrap { min-height: 420px; } .hero-photo { min-height: 420px; } }

.audience-photo { width: 100%; border-radius: 0.5rem; object-fit: cover; display: block; }
.audience-hcard-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
@media (max-width: 1023px) { .audience-hcard-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) { .audience-hcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .audience-hcard-grid .audience-hcard:last-child { grid-column: 1 / -1; justify-self: center; } }
.audience-hcard { min-height: 160px; border-radius: 0.75rem; background: var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.25rem; gap: 0.625rem; width: 100%; margin: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.audience-hcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(143,147,255,0.35); }
.audience-hcard .check-icon { color: var(--green); flex-shrink: 0; }
.audience-hcard .check-icon svg { width: 38px; height: 38px; }
.audience-hcard .check-text-dark { font-size: 0.875rem; font-weight: 400; line-height: 1.4; color: white; }
.audience-hcard .check-text-dark strong { font-weight: 700; }

.cta-home-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .cta-home-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.cta-content-left { text-align: left; max-width: none; margin: 0; }
.cta-buttons-left { justify-content: flex-start; }
.cta-contact-info-left { align-items: flex-start; }
.cta-home-image { border-radius: 0.75rem; overflow: hidden; order: -1; }
@media (min-width: 1024px) { .cta-home-image { order: unset; } }
.cta-photo { width: 100%; height: 320px; object-fit: cover; display: block; border-radius: 0.75rem; }
@media (min-width: 1024px) { .cta-photo { height: 480px; } }

/* HOME PROBLEM SECTION */
.problem-box { max-width: 780px; margin: 0 auto; text-align: center; }
.problem-bar-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.primary-bar { width: 4px; height: 60px; background: var(--primary); border-radius: 9999px; }

/* PILLAR BG CARDS */
.pillar-bg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
@media (min-width: 640px) { .pillar-bg-grid { gap: 1rem; } }
@media (min-width: 1024px) { .pillar-bg-grid { gap: 1.5rem; } }

.pillar-bg-card { border-radius: 0.625rem; padding: 0.875rem; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
@media (min-width: 480px) { .pillar-bg-card { min-height: 260px; padding: 1.125rem; } }
@media (min-width: 640px) { .pillar-bg-card { min-height: 340px; padding: 1.75rem; border-radius: 0.75rem; } }
@media (min-width: 1024px) { .pillar-bg-card { min-height: 460px; padding: 2.75rem 2.5rem; } }

.pillar-bg-glass { background: rgba(0,0,0,0.48); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.375rem; padding: 0.75rem 0.875rem; }
@media (min-width: 640px) { .pillar-bg-glass { border-radius: 0.625rem; padding: 1.125rem 1.375rem; } }
@media (min-width: 1024px) { .pillar-bg-glass { border-radius: 0.75rem; padding: 1.5rem 1.75rem; } }

.pillar-bg-title { font-size: 0.8125rem; font-weight: 800; color: #fff; line-height: 1.3; }
@media (min-width: 480px) { .pillar-bg-title { font-size: 0.9375rem; } }
@media (min-width: 640px) { .pillar-bg-title { font-size: 1.1875rem; } }
@media (min-width: 1024px) { .pillar-bg-title { font-size: 1.5rem; } }

.pillar-bg-desc { display: none; margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.6; color: rgba(241,242,242,0.82); }
@media (min-width: 480px) { .pillar-bg-desc { display: block; } }
@media (min-width: 640px) { .pillar-bg-desc { font-size: 0.875rem; margin-top: 0.625rem; } }
@media (min-width: 1024px) { .pillar-bg-desc { font-size: 1rem; margin-top: 0.875rem; } }

/* INLINE LINK */
.inline-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-dark-2); transition: color 0.2s; }
.inline-link:hover { color: var(--brand-dark-1); }
.quote-text { font-size: 1.125rem; font-weight: 500; font-style: italic; color: var(--brand-dark-2); margin-top: 1.5rem; }
@media (min-width: 768px) { .quote-text { font-size: 1.25rem; } }

/* RESPONSIVE POLISH */
html, body { width: 100%; overflow-x: hidden; }
main { overflow-x: visible; overflow-y: visible; }

@supports not (overflow-x: clip) {
  main { overflow-x: visible; overflow-y: visible; }
}

@media (min-width: 422px) and (max-width: 767px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 767px) {
  img, video, canvas, svg { max-width: 100%; }
  [style*="max-width"], [style*="width"], [style*="min-height"], [style*="height"] { max-width: 100% !important; }
  [style*="min-height"] { min-height: auto !important; }
  [style*="height:100%"], [style*="height: 100%"] { height: auto !important; }
  .container, section, div, article, aside, header, footer, nav, main { min-width: 0; }
  .animate-on-scroll { transition-delay: 0s !important; transform: translateY(16px); }

  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  .header-inner { height: 64px; }
  .header-logo img { height: 30px; max-width: 190px; object-fit: contain; }
  .mobile-menu { max-height: calc(100vh - 64px); overflow-y: auto; }
  .mobile-menu nav { padding: 1rem 0; }
  .mobile-menu .nav-link { padding: 0.875rem 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu-cta { padding: 0.75rem 0 1.25rem; }

  .btn { width: 100%; min-height: 44px; white-space: normal; text-align: center; padding: 0.75rem 1rem; }
  .btn-xl, .btn-lg { padding: 0.75rem 1rem; font-size: 0.9375rem; }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: stretch; gap: 0.75rem; }

  .section-py { padding-top: 4rem; padding-bottom: 4rem; }
  .section-title { font-size: 1.625rem; line-height: 1.18; }
  .section-desc, .editorial-note, .contact-intro p { font-size: 0.97rem; line-height: 1.7; }
  .overline { font-size: 0.6875rem; letter-spacing: 0.16em; }

  .page-hero { padding: 6.25rem 0 3rem; }
  .page-hero .animate-on-scroll { max-width: 100% !important; }
  .page-title { font-size: 1.875rem; line-height: 1.16; }
  .page-desc { font-size: 0.97rem; line-height: 1.7; }

  .hero-section { min-height: auto; }
  .hero-section, .cta-banner { overflow: visible; }
  .hero-content { padding-top: 6.25rem; padding-bottom: 3rem; }
  .home-hero .hero-content { padding-top: 6.5rem; padding-bottom: 2.75rem; }
  .home-hero-grid { gap: 2rem; }
  .home-hero-grid > *, .editorial-split > *, .two-col-5 > *, .two-col-equal > *, .two-col-insights > * { min-width: 0; }
  .home-hero .hero-title { font-size: 1.875rem; line-height: 1.14; }
  .hero-title { font-size: 2rem; line-height: 1.12; }
  .hero-desc { margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
  .hero-overline { font-size: 0.6875rem; letter-spacing: 0.16em; }
  .home-hero-panel { padding: 1.25rem; box-shadow: none; }
  .home-panel-header { align-items: flex-start; }
  .home-panel-header img { height: 28px; max-width: 150px; }
  .home-panel-copy p { font-size: 1.125rem; line-height: 1.45; }
  .home-panel-list { margin-top: 1.5rem; }

  .home-logo-carousel { width: 100%; margin-top: 2.25rem; min-height: 4.25rem; padding-top: 1rem; overflow: hidden; -webkit-mask-image: none; mask-image: none; max-width: none; }
  .home-logo-track { display: flex; width: max-content; max-width: none !important; animation: logoMarquee 34s linear infinite; will-change: transform; }
  .home-logo-set { flex: 0 0 auto; gap: 1.5rem; padding-right: 1.5rem; max-width: none !important; }
  .home-logo-set[aria-hidden="true"] { display: flex; }
  .client-logo { min-width: 118px; height: 2.75rem; max-width: none !important; }
  .client-logo img { max-width: 136px !important; max-height: 2rem; }
  .client-logo-text { font-size: 0.95rem; overflow: visible; max-width: none !important; }
  .hunter-word, .saertex-word, .biesterfeld-word { font-size: 1rem; }
  .niedax-word, .greenergy-word, .solventum-word { font-size: 1.08rem; }
  .biesterfeld-word strong, .solventum-word span { font-size: 1.85rem; }
  .hunter-word span { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }
  .optibelt-word span { padding: 0.4rem 0.9rem; font-size: 0.8125rem; }

  .home-split-heading, .editorial-split { gap: 1rem; }
  .home-hero, .home-pillars-section, .home-services-section { overflow: visible; }
  .home-hero .container, .home-pillars-section .container, .home-services-section .container, .home-audience-section .container { overflow: visible; }
  .home-audience-section { overflow: visible; }
  .home-audience-section .dot-pattern { display: none; }
  .home-audience-section .container[style*="position"] { position: static !important; }
  .home-services-section .grid-3[style], #site-footer + * { max-width: 100%; }
  .home-services-section .grid-3[style], .grid-3[style], .grid-5c[style] { margin-top: 2rem !important; }
  .title-with-bar { flex-direction: column; gap: 0.75rem; }
  .vertical-bar { width: 48px; height: 3px; }
  .center-copy { max-width: 100%; text-align: left; }
  .center-copy p, .center-copy .center-copy-lead { font-size: 0.97rem; line-height: 1.7; }
  .center-copy-divider { margin: 1.5rem 0; }
  .home-pillar-grid, .line-card-grid { margin-top: 2.25rem; }
  .home-pillar-card, .line-card { padding: 1.5rem 0; }
  .line-card .line-number, .home-pillar-card span { margin-bottom: 1rem; }

  .grid-2, .grid-3, .grid-4, .grid-5c, .values-grid, .dark-values-grid, .testimonial-grid, .contact-info-grid { grid-template-columns: 1fr; gap: 1rem; }
  .line-card-grid, .home-pillar-grid { grid-template-columns: 1fr !important; }
  .two-col-5, .two-col-equal, .two-col-insights, .col-5-form { gap: 2rem; }

  .service-card, .exclusive-box, .soft-panel, .testimonial-card, .contact-info-item, .dark-box, .dark-value-card, .value-card, .insight-card, .blog-post-white, .blog-post-dark { padding: 1.25rem; }
  .service-card, .exclusive-box, .soft-panel, .testimonial-card, .contact-info-item, .dark-box, .dark-value-card, .value-card, .insight-card, .blog-post-white, .blog-post-dark, .line-card, .home-pillar-card, .pillar-item, .contrast-item, .dark-practice-item, .effect-word { width: 100%; min-width: 0; }
  .contact-info-item { min-height: auto; }
  .contact-info-icon { width: 2.25rem; height: 2.25rem; }
  .contact-info-value { font-size: 0.9375rem; overflow-wrap: anywhere; }
  .contact-intro h2 { font-size: 1.625rem; }
  .map-placeholder { min-height: 220px; }

  .testimonial-text { font-size: 0.95rem; line-height: 1.65; }
  .testimonial-quote { font-size: 3rem; }

  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.875rem; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
  .insight-card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .cta-content { text-align: left; }
  .cta-title { font-size: 1.5rem; }
  .cta-desc { font-size: 0.97rem; line-height: 1.7; }
  .cta-contact-info { align-items: flex-start; gap: 0.75rem; }
  .cta-contact-info span { align-items: flex-start; line-height: 1.5; }

  .footer-inner { padding: 3.5rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
  .footer-bottom { align-items: flex-start; text-align: left; margin-top: 2.5rem; }
}

@media (max-width: 420px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .header-logo img { height: 28px; max-width: 168px; }
  .home-hero .hero-title, .hero-title, .page-title { font-size: 1.75rem; }
  .section-title, .compact-title { font-size: 1.5rem; }
  .hero-desc, .page-desc, .section-desc, .editorial-note { font-size: 0.9375rem; }
  .home-panel-header { flex-direction: column; gap: 0.75rem; }
  .home-logo-set { gap: 1.5rem; padding-right: 1.5rem; }
  .client-logo { min-width: 104px; }
  .service-tags { letter-spacing: 0.04em; }
}

/* HOME HERO MOBILE */
@media (max-width: 767px) {
  .home-hero {
    display: block;
    min-height: auto;
    overflow: visible;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/bg-hero-mobile.png') !important;
    background-size: 200% !important;
    background-position: center 55% !important;
  }

  .home-hero .container.hero-content {
    width: 100%;
    max-width: none;
    padding: 24rem 1.5rem 2.25rem !important;
  }

  .home-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
  }

  .home-hero-grid > *,
  .home-hero .animate-on-scroll {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-hero .hero-overline {
    display: block;
    max-width: 100%;
    margin-bottom: 0.875rem;
    font-size: 0.625rem;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .home-hero .hero-title {
    max-width: 100%;
    margin: 0;
    font-size: 1.625rem;
    line-height: 1.16;
    letter-spacing: 0;
    text-wrap: wrap;
  }

  .home-hero .hero-desc {
    max-width: 100%;
    margin-top: 0.875rem;
    font-size: 0.925rem;
    line-height: 1.6;
  }

  .home-hero .hero-buttons {
    width: 100%;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }

  .home-hero .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .home-hero-panel {
    width: 100%;
    margin: 0;
    padding: 1rem;
    border-radius: 8px;
  }

  .home-panel-header {
    gap: 0.75rem;
    padding-bottom: 1rem;
  }

  .home-panel-header span {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }

  .home-panel-header img {
    height: 24px;
    max-width: 132px;
  }

  .home-panel-copy p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.42;
  }

  .home-panel-list {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }

  .home-panel-list span {
    padding-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .hero-photo-wrap { min-height: 220px; border-radius: 0.5rem; }
  .hero-photo { min-height: 220px; }
  .cta-photo { min-height: 240px; }
  .cta-home-grid { gap: 2rem; }

  .home-logo-carousel {
    width: 100%;
    margin-top: 1.5rem;
    min-height: 3.5rem;
    padding-top: 0.875rem;
    overflow: hidden;
  }

  .home-logo-track {
    animation: logoMarquee 36s linear infinite;
  }

  .home-logo-set {
    gap: 1.125rem;
    padding-right: 1.125rem;
  }

  .client-logo {
    min-width: 104px;
    height: 2.35rem;
  }

  .client-logo img {
    max-width: 118px !important;
    max-height: 1.75rem;
  }

  .client-logo-text,
  .hunter-word,
  .saertex-word,
  .biesterfeld-word {
    font-size: 0.875rem;
  }

  .niedax-word,
  .greenergy-word,
  .solventum-word {
    font-size: 0.95rem;
  }

  .biesterfeld-word strong,
  .solventum-word span {
    font-size: 1.55rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .home-hero .container.hero-content {
    padding: 6.25rem 1.75rem 2.5rem !important;
  }

  .home-hero .hero-title {
    font-size: 1.875rem;
    line-height: 1.14;
  }

  .home-hero .hero-desc {
    font-size: 0.975rem;
  }

  .home-hero-panel {
    padding: 1.125rem;
  }
}

@media (max-width: 380px) {
  .home-hero .container.hero-content {
    padding: 5.5rem 1.125rem 2rem !important;
  }

  .home-hero .hero-title {
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .home-hero .hero-desc {
    font-size: 0.875rem;
  }

  .home-hero-panel {
    padding: 0.875rem;
  }

  .home-panel-copy p {
    font-size: 0.95rem;
  }

  .client-logo {
    min-width: 96px;
  }
}

/* DARK GRID — pillar cards on dark background (Visão de mercado section) */
.dark-grid { border-top-color: rgba(241,242,242,0.14); }
.dark-grid .home-pillar-card { border-bottom-color: rgba(241,242,242,0.14); }
.dark-grid .home-pillar-card span { color: var(--brand-lilac); }
.dark-grid .home-pillar-card h3 { color: white; }
.dark-grid .home-pillar-card p { color: rgba(241,242,242,0.7); }

/* TEAM SECTION */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4,1fr); } }
.team-card { display: flex; flex-direction: column; gap: 0.75rem; }
.team-avatar { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 0.75rem; background: var(--brand-dark-2); }
.team-avatar-placeholder { width: 100%; aspect-ratio: 1/1; border-radius: 0.75rem; background: linear-gradient(135deg, var(--brand-dark-1) 0%, var(--brand-dark-2) 100%); display: flex; align-items: center; justify-content: center; }
.team-avatar-placeholder svg { opacity: 0.3; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--brand-dark-1); line-height: 1.3; }
.team-role { font-size: 0.8125rem; color: var(--brand-dark-2); font-weight: 600; }
.team-linkedin { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: rgba(35,31,32,0.5); transition: color 0.2s; }
.team-linkedin:hover { color: var(--brand-dark-2); }

/* CASES PAGE */
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3.5rem; }
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3,1fr); } }
.case-card { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-card); border-top: 3px solid var(--brand-lilac); display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s ease; }
.case-card:hover { transform: translateY(-4px); }
.case-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand-lilac); }
.case-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-dark-1); line-height: 1.35; }
.case-card p { font-size: 0.9rem; line-height: 1.65; color: rgba(35,31,32,0.72); flex: 1; }
.case-result { background: var(--brand-gray); border-radius: 0.5rem; padding: 1rem 1.25rem; }
.case-result strong { display: block; font-size: 1.375rem; font-weight: 800; color: var(--brand-dark-2); }
.case-result span { font-size: 0.8rem; color: rgba(35,31,32,0.6); }

/* NOSSA HISTÓRIA — imagem lateral */
.historia-img-col { min-height: 400px; }
.historia-img { width: 100%; height: auto; object-fit: contain; border-radius: 1rem; display: block; }
@media (max-width: 767px) {
  .historia-img-col { min-height: unset; }
  .values-grid { margin-top: 1.25rem !important; }
}

/* SECTORS GRID */
.sectors-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 900px) { .sectors-grid { grid-template-columns: repeat(3,1fr); } }
.sector-column-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border-radius: 0.5rem; background: white; border: 1px solid #E8E9E9; box-shadow: var(--shadow-card); }
.sector-column-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sector-column-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.sector-column-body h3 { font-size: 1.625rem; font-weight: 800; line-height: 1.15; color: var(--brand-dark-1); }
.sector-column-copy { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.sector-column-copy p { font-size: 0.9375rem; line-height: 1.65; color: rgba(35,31,32,0.72); }
.sector-column-copy strong { color: var(--brand-dark-1); font-weight: 800; }
.sector-tag { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-lilac); margin-bottom: 0.5rem; }

/* SERVICES PHOTO-CARD GRID (home) */
.home-services-section { background: #F1F2F2; }

.svc-single-header { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.svc-single-header .overline { margin-bottom: 0.75rem; }
.svc-single-header .section-title { font-size: 2.75rem; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .svc-single-header .section-title { font-size: 3.25rem; } }
@media (max-width: 767px) { .svc-single-header .section-title { font-size: 2rem; } }
.svc-single-header .section-desc { color: rgba(35,31,32,0.7); margin-top: 0; }

.svc-cta-row { display: flex; justify-content: center; margin-top: 2.5rem; }

.svc-photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; grid-auto-rows: 200px; }
@media (min-width: 480px) { .svc-photo-grid { grid-auto-rows: 260px; } }
@media (min-width: 640px) { .svc-photo-grid { gap: 1rem; grid-auto-rows: 320px; } }
@media (min-width: 1024px) { .svc-photo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; grid-auto-rows: 400px; } }

.svc-photo-grid .pillar-bg-card { min-height: 0; }

.svc-photo-grid .pillar-bg-title,
.pillar-bg-grid .pillar-bg-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 480px) {
  .svc-photo-grid .pillar-bg-desc,
  .pillar-bg-grid .pillar-bg-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.svc-photo-card { text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.svc-photo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.svc-photo-card:hover .svc-arrow { color: var(--green); transform: translate(2px, -2px); }

.svc-glass-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }

.svc-arrow { color: rgba(241,242,242,0.55); flex-shrink: 0; margin-top: 0.1rem; transition: color 0.2s, transform 0.2s; }
